From 2a33f975059dc25a1d0eb8d374fcb111ee3d4f87 Mon Sep 17 00:00:00 2001 From: "Christian T. Jacobs" Date: Fri, 14 Apr 2017 22:02:16 +0100 Subject: [PATCH] Corrected rtypes. --- pyqso/summary.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyqso/summary.py b/pyqso/summary.py index f329aa2..b18bba9 100644 --- a/pyqso/summary.py +++ b/pyqso/summary.py @@ -150,7 +150,7 @@ class Summary(object): def find_year_bounds(self): """ Find the years of the oldest and newest QSOs across all logs in the logbook. - :returns: The years of the oldest and newest QSOs. The tuple (None, None) is returned if no QSOs have been made, or no QSO dates have been specified. + :returns: The years of the oldest and newest QSOs. The tuple (None, None) is returned if no QSOs have been made or no QSO dates have been specified. :rtype: tuple """ @@ -176,7 +176,7 @@ class Summary(object): :arg int year: The year of interest. :returns: The total number of contacts made in each month of a given year. - :rtype: int + :rtype: dict """ contact_count = {} @@ -204,7 +204,7 @@ class Summary(object): :arg int year: The year of interest. :returns: The total number of contacts made with each mode in a given year. - :rtype: list + :rtype: dict """ mode_count = {}