From: Christian Heller Date: Fri, 3 Jul 2020 23:17:35 +0000 (+0200) Subject: Replace "not enough data" string for space reasons. X-Git-Url: https://plomlompom.com/repos/?p=berlin-corona-table;a=commitdiff_plain;h=8a5c961404590f6ef2145d6e37906d41775361f0;ds=sidebyside Replace "not enough data" string for space reasons. --- diff --git a/enhance_table.py b/enhance_table.py index c670739..c2ea18d 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -177,7 +177,7 @@ if output_type == 'html': print('') for district in sorted_districts: district_data = db[district][date] - week_sum = week_avg = week_inc = '(not enough data)' + week_sum = week_avg = week_inc = '?' new_infections = district_data['new_infections'] if 'week_sum' in district_data: week_sum = '%s' % district_data['week_sum']