changed to 1

pull/231/head
Yariv Menachem 2025-01-07 16:46:04 +02:00
parent aa1481539a
commit fe322d1519
1 changed files with 1 additions and 2 deletions

View File

@ -165,8 +165,7 @@ class Country(Enum):
return country
valid_countries = [country.value for country in cls]
raise ValueError(
f"Invalid country string: '{country_str}'. Valid countries are: {
', '.join([country[0] for country in valid_countries])}"
f"Invalid country string: '{country_str}'. Valid countries are: {', '.join([country[0] for country in valid_countries])}"
)
def to_dict(self):