replacing 'Unknown Country' by None

This commit is contained in:
frankknoll
2023-04-01 11:39:36 +02:00
parent 74ebd55a47
commit e7256697c3
5 changed files with 27 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
def getCountries(internationalVaersCovid19):
return sorted(internationalVaersCovid19['COUNTRY'].unique())
return sorted(internationalVaersCovid19['COUNTRY'].dropna().unique())
def getCountryOptions(countries):