From 5073c18bdbed546e9311c6d76c7a726c009a9ec2 Mon Sep 17 00:00:00 2001
From: thomaswoehlke <thomas.woehlke@gmail.com>
Date: Wed, 26 May 2021 17:46:57 +0200
Subject: [PATCH] Refactoring: vaccination

---
 src/flask_covid19/blueprints/data_rki/rki_model.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/flask_covid19/blueprints/data_rki/rki_model.py b/src/flask_covid19/blueprints/data_rki/rki_model.py
index f8f27028..dde87528 100644
--- a/src/flask_covid19/blueprints/data_rki/rki_model.py
+++ b/src/flask_covid19/blueprints/data_rki/rki_model.py
@@ -279,7 +279,7 @@ class RkiData(BlueprintFactTable):
     altersgruppe2 = db.Column(db.String(255), nullable=False)
 
     @classmethod
-    def find_by_date_reported_and_location(cls, date_reported: BlueprintDateReported, location: BlueprintLocation):
+    def find_by_date_reported_and_location(cls, date_reported: RkiMeldedatum, location: RkiLandkreis):
         return db.session.query(cls).filter(
             and_((cls.date_reported.id == date_reported.id), (cls.location.id == location.id))
         ).one_or_none()
-- 
GitLab