From: Christian Heller Date: Sat, 4 Jul 2020 00:06:12 +0000 (+0200) Subject: Fix broken txt version. X-Git-Url: https://plomlompom.com/repos/?p=berlin-corona-table;a=commitdiff_plain;h=b80b98afa99c2d7c406673f3318538828b6a4819 Fix broken txt version. --- diff --git a/enhance_table.py b/enhance_table.py index 4ce7792..3e36e0e 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -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]))