From 229f31f09725934927c5674c9ad66c5de089b59a Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Wed, 17 Feb 2021 13:56:32 +0100 Subject: [PATCH] ### 0.0.17 Release * Fixed #123 split RkiBundeslaenderService into two Services, one for bundeslaender and one for landkreise * Fixed #128 add fields from csv to RkiLandkreiseImport * Fixed #139 refactor RkiBundeslaenderServiceDownload to new method scheme introduced 07.02.2021 * Fixed #140 move WhoImport to RKI in: rk_service_import.py * Fixed #125 implement RkiLandkreise * Fixed #126 implement RkiBundeslaenderImport ### 0.0.18 Release * Fixed #39 SQLalchemy instead of SQL: AllModelClasses.remove_all() * Fixed #40 SQLalchemy instead of SQL: EcdcImport.get_date_rep() * Fixed #41 SQLalchemy instead of SQL: EcdcImport.get_countries_of_continent() * Fixed #107 SQLalchemy instead of SQL in: EcdcImport.get_countries_of_continent * Fixed #109 SQLalchemy instead of SQL in: EcdcImport.get_date_rep * Fixed #110 SQLalchemy instead of SQL in: EcdcImport.get_continent --- .../rki_vaccination_service.py | 22 +------------------ 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/src/covid19/blueprints/rki_vaccination/rki_vaccination_service.py b/src/covid19/blueprints/rki_vaccination/rki_vaccination_service.py index 9b49b672..1596bbd6 100644 --- a/src/covid19/blueprints/rki_vaccination/rki_vaccination_service.py +++ b/src/covid19/blueprints/rki_vaccination/rki_vaccination_service.py @@ -57,24 +57,4 @@ class RkiVaccinationService: def run_update_star_schema_initial(self): self.run_import_only() self.vaccination_service_udpate.update_star_schema_initial() - return self - - # TODO remove DEPRECATED - #def run_download_DEPRECATED(self): - # app.logger.info(" run update [begin]") - # app.logger.info("------------------------------------------------------------") - # success = self.vaccination_service_download.download_file() - # app.logger.info("") - # app.logger.info(" run update [done]") - # app.logger.info("------------------------------------------------------------") - # return success - - # TODO remove DEPRECATED - #def run_update_initial_DEPRECATED(self): - # app.logger.info(" run update initial [begin]") - # app.logger.info("------------------------------------------------------------") - # self.vaccination_service_import.import_file() - # app.logger.info("") - # app.logger.info(" run update initial [done]") - # app.logger.info("------------------------------------------------------------") - # return self + return self \ No newline at end of file -- GitLab