From 0b2b13b07b3f001e6e4508c222906bd2df365bab Mon Sep 17 00:00:00 2001 From: Benedikt Bastin Date: Sat, 20 Mar 2021 13:39:16 +0100 Subject: [PATCH] fix: Removed debug print statements --- plot.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/plot.py b/plot.py index 5710b55..d47c463 100644 --- a/plot.py +++ b/plot.py @@ -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)