Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
zedzior committed Apr 25, 2024
1 parent a4437a1 commit 8202225
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions saleor/account/i18n_valid_address_extension.py
Expand Up @@ -4,7 +4,6 @@


class AddressFieldsToSubstitute(Enum):
CITY = "city"
CITY_AREA = "city_area"
COUNTRY_AREA = "country_area"

Expand Down Expand Up @@ -38,7 +37,7 @@ class AddressFieldsToSubstitute(Enum):
"Wicklow": "Co. Wicklow",
}

VALID_ADDRESS_EXTENSION_MAP: dict[CountryCodeEnum, dict[str, dict[str, str]]] = {
VALID_ADDRESS_EXTENSION_MAP: dict[str, dict[str, dict[str, str]]] = {
CountryCodeEnum.IE.value: {
AddressFieldsToSubstitute.COUNTRY_AREA.value: IE_COUNTRY_AREA
}
Expand Down

0 comments on commit 8202225

Please sign in to comment.