aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2023-05-08 21:34:49 +0200
committerDaniel Schadt <kingdread@gmx.de>2023-05-08 21:34:49 +0200
commit5b40a857d02b8768c5bc14306d1934ed354b38d6 (patch)
tree8560ef5835e7618f5c69c1270db50a7d66d8e6ad
parent87d3f500cccb6ad6b8472137e96bc4634e911e15 (diff)
downloadfietsboek-5b40a857d02b8768c5bc14306d1934ed354b38d6.tar.gz
fietsboek-5b40a857d02b8768c5bc14306d1934ed354b38d6.tar.bz2
fietsboek-5b40a857d02b8768c5bc14306d1934ed354b38d6.zip
fix whitespace
-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