From fe322d15195df1b703997de1416656704ee05c09 Mon Sep 17 00:00:00 2001 From: Yariv Menachem Date: Tue, 7 Jan 2025 16:46:04 +0200 Subject: [PATCH] changed to 1 --- src/jobs/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/jobs/__init__.py b/src/jobs/__init__.py index 21eda50..9caa1b6 100644 --- a/src/jobs/__init__.py +++ b/src/jobs/__init__.py @@ -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):