1
0
Fork 0

fix: Removed debug print statements

This commit is contained in:
Benedikt Bastin 2021-03-20 13:39:16 +01:00
parent 6e93557250
commit 0b2b13b07b
1 changed files with 0 additions and 5 deletions

View File

@ -356,11 +356,6 @@ def plot_vaccination_bar_graph_total_time_by_week():
f = list(data_first_vaccination['vaccinations_by_week'].values())
s = list(data_second_vaccination['vaccinations_by_week'].values())
for d, v in zip(w, s):
print(f"{d}: {v}")
print(type(w[0]), type(f[0]))
bar1 = ax.bar(w, f, label='Wöchentliche Erstimpfungen', color='blue', width=6.8)
bar2 = ax.bar(w, s, label='Wöchentliche Zweitimpfungen', color='lightblue', width=6.8, bottom=f)