From a269381ea024f502b58b1b40eaa1d82e89b78cd7 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 1 Jul 2020 21:10:33 +0200
Subject: [PATCH] Remove more redundant whitespace.

---
 enhance_table.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/enhance_table.py b/enhance_table.py
index 3d3ec77..63e6073 100755
--- a/enhance_table.py
+++ b/enhance_table.py
@@ -21,7 +21,7 @@ f = open('daily_infections_table.txt', 'r')
 lines = f.readlines()
 f.close()
 
-# Parse first table file line for the names and order of districts. 
+# Parse first table file line for the names and order of districts.
 db = {}
 sorted_districts = []
 for header in lines[0].split():
@@ -44,7 +44,7 @@ sorted_dates.sort()
 # sum of the individual districts new infections.  Yes, sometimes Lageso sends
 # data that is troubled in this way.  It will then have to be fixed manually in
 # the table file, since we should have a human look at what mistake was
-# probably made. 
+# probably made.
 for date in sorted_dates:
     sum_district = sorted_districts[-1]
     day_sum = 0
-- 
2.30.2