From 80b7448aede72060c2186748199e52f998460fe7 Mon Sep 17 00:00:00 2001 From: frankknoll Date: Thu, 30 Mar 2023 15:36:39 +0200 Subject: [PATCH] refactoring --- src/CountriesByBatchcodeProvider.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/CountriesByBatchcodeProvider.py b/src/CountriesByBatchcodeProvider.py index 7d78daf5e03..9504f5b304e 100644 --- a/src/CountriesByBatchcodeProvider.py +++ b/src/CountriesByBatchcodeProvider.py @@ -35,7 +35,6 @@ def _readExploration(csvFile, indexName): return exploration def getCountriesByBatchcodeBeforeDeletion(): - internationalVaersCovid19 = getInternationalVaersCovid19(dataDir = 'VAERSBeforeDeletion', years = [2020, 2021, 2022]) + internationalVaersCovid19 = getInternationalVaersCovid19(dataDir = 'VAERS/VAERSBeforeDeletion', years = [2020, 2021, 2022]) batchCodeTable = BatchCodeTableFactory(internationalVaersCovid19).createGlobalBatchCodeTable() - countriesByBatchcodeBeforeDeletion = batchCodeTable[['Countries']] - return countriesByBatchcodeBeforeDeletion + return batchCodeTable[['Countries']]