From b576a3fa6a9868e57deea5ca472bcc3a25a631a9 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Sat, 22 May 2021 07:00:32 +0200 Subject: [PATCH] Refactoring: rename covid19 to flask_covid19 --- src/flask_covid19/blueprints/data_who/who_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flask_covid19/blueprints/data_who/who_model.py b/src/flask_covid19/blueprints/data_who/who_model.py index 6fc322a8..7968279e 100644 --- a/src/flask_covid19/blueprints/data_who/who_model.py +++ b/src/flask_covid19/blueprints/data_who/who_model.py @@ -32,7 +32,7 @@ class WhoDateReported(BlueprintDateReported): @classmethod def create_new_object_factory(cls, my_date_rep): - return super().create_new_object_factory_for_who(my_date_rep) + return cls.create_new_object_factory_for_who(my_date_rep) class WhoCountryRegion(BlueprintLocationGroup): -- GitLab