aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fietsboek/summaries.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fietsboek/summaries.py b/fietsboek/summaries.py
index 3f3f947..ac94e92 100644
--- a/fietsboek/summaries.py
+++ b/fietsboek/summaries.py
@@ -14,7 +14,7 @@ class Summary:
:vartype ascending: bool
"""
- def __init__(self, ascending: bool=True):
+ def __init__(self, ascending: bool = True):
self.years: Dict[int, YearSummary] = {}
self.ascending = ascending
@@ -63,7 +63,7 @@ class YearSummary:
:vartype ascending: bool
"""
- def __init__(self, year: int, ascending: bool=True):
+ def __init__(self, year: int, ascending: bool = True):
self.year: int = year
self.months: Dict[int, MonthSummary] = {}
self.ascending = ascending