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

@@ -16,7 +16,7 @@ class Splttype2CountryConverter:
lambda splttype:
Splttype2CountryConverter._getCountryNameOfSplttypeOrDefault(
splttype = splttype,
default = 'Unknown Country'))
default = None))
.astype("string"))
@staticmethod