From 5b40a857d02b8768c5bc14306d1934ed354b38d6 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Mon, 8 May 2023 21:34:49 +0200 Subject: fix whitespace --- fietsboek/summaries.py | 4 ++-- 1 file 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 -- cgit v1.2.3