Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ known_third_party =
xlrd

[mypy]
python_version = 3.9
python_version = 3.10
strict = True
warn_unreachable = True
2 changes: 1 addition & 1 deletion stdnum/eu/vat.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
country code of gr while for VAT purposes el is used instead. For Northern
Ireland numbers are prefixed with xi of United Kingdom numbers."""

_country_modules = dict()
_country_modules: dict[str, NumberValidationModule | None] = {}

vies_wsdl = 'https://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl'
"""The WSDL URL of the VAT Information Exchange System (VIES)."""
Expand Down
2 changes: 1 addition & 1 deletion stdnum/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def get_cc_module(cc: str, name: str) -> NumberValidationModule | None:


# this is a cache of SOAP clients
_soap_clients = {}
_soap_clients: dict[tuple[str, float, bool | str], Any] = {}


def _get_zeep_soap_client(
Expand Down
Loading