home · contact · privacy
Fix broken txt version.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 4 Jul 2020 00:06:12 +0000 (02:06 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 4 Jul 2020 00:06:12 +0000 (02:06 +0200)
enhance_table.py

index 4ce77925c91c985d1bfb177cb0d7ac5694d2d690..3e36e0e40d0dc51913ef55d0f5d4ef8fe1434c9f 100755 (executable)
@@ -253,13 +253,13 @@ HTML view: https://plomlompom.com/berlin_corona.html
         weekly_sums = []
         weekly_avgs = []
         weekly_incs = []
-        for district in sorted_districts[:-1]:
+        for district in sorted_districts[1:]:
             weekly_sums += [db[district][week_start_date]['week_sum']]
             weekly_avgs += [db[district][week_start_date]['week_average']]
             weekly_incs += [db[district][week_start_date]['week_incidence']]
         print()
         print('district stats for week from %s to %s:' % (date, week_start_date))
-        print(' '*7, '    '.join(sorted_districts[:-1]))
+        print(' '*7, '    '.join(sorted_districts[1:]))
         print('wsum', ' '.join(['%5.1f' % wsum for wsum in weekly_sums]))
         print('wavg', ' '.join(['%5.1f' % wavg for wavg in weekly_avgs]))
         print('winc', ' '.join(['%5.1f' % winc for winc in weekly_incs]))