From ad67043b2398ecc1d96f0005d3348a4947696e1a Mon Sep 17 00:00:00 2001 From: Benedikt Bastin Date: Wed, 28 Apr 2021 15:31:13 +0200 Subject: [PATCH] fix: RKI changed the format again --- plot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plot.py b/plot.py index 3ec908b..0a85052 100644 --- a/plot.py +++ b/plot.py @@ -168,6 +168,8 @@ if 'Erstimpfung' in impfungen: raw_first_vaccinations = impfungen['Erstimpfung'] elif 'Einmal geimpft' in impfungen: raw_first_vaccinations = impfungen['Einmal geimpft'] +elif 'Begonnene Impfserie' in impfungen: + raw_first_vaccinations = impfungen['Begonnene Impfserie'] if 'Zweitimpfung' in impfungen: raw_second_vaccinations = impfungen['Zweitimpfung']