diff options
author | Daniel Schadt <kingdread@gmx.de> | 2023-05-08 21:34:49 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2023-05-08 21:34:49 +0200 |
commit | 5b40a857d02b8768c5bc14306d1934ed354b38d6 (patch) | |
tree | 8560ef5835e7618f5c69c1270db50a7d66d8e6ad | |
parent | 87d3f500cccb6ad6b8472137e96bc4634e911e15 (diff) | |
download | fietsboek-5b40a857d02b8768c5bc14306d1934ed354b38d6.tar.gz fietsboek-5b40a857d02b8768c5bc14306d1934ed354b38d6.tar.bz2 fietsboek-5b40a857d02b8768c5bc14306d1934ed354b38d6.zip |
fix whitespace
-rw-r--r-- | fietsboek/summaries.py | 4 |
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 |