From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 4 Jul 2020 01:39:37 +0000 (+0200)
Subject: Minor comment change.
X-Git-Url: https://plomlompom.com/repos/new_day?a=commitdiff_plain;h=dc7fd6818afda18eb8e2d0c8c99af29ccf3655c1;p=berlin-corona-table

Minor comment change.
---

diff --git a/enhance_table.py b/enhance_table.py
index 975abd8..c5c11c2 100755
--- a/enhance_table.py
+++ b/enhance_table.py
@@ -95,13 +95,13 @@ for line in lines[1:]:
         db[district][date] = {'new_infections': int(district_data)}
 sorted_dates.sort()
 
-# Define and move sum_district from end to start.
+# In LaGeSo's data, the last "district" is actually the sum of all districts /
+# the whole of Berlin.  For our district order, move it in front of the other
+# districts, as its numbers are the most interesting, so in the table views
+# we want to see it first.
 sum_district = sorted_districts.pop()
 sorted_districts.insert(0, sum_district)
 
-# In LaGeSo's data, the last "district" is actually the sum of all districts /
-# the whole of Berlin.
-#
 # Fail on any day where the "sum" district's new infections are not the proper
 # 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