diff options
author | vovavili <64227274+vovavili@users.noreply.github.com> | 2022-08-06 22:00:51 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2022-08-13 17:19:33 +0200 |
commit | 4d4a0b35dd8db8a4ddba469dc2cb646f1f877785 (patch) | |
tree | 0cb0aa545ae2a170c75cc64e06c8019db39a583f | |
parent | 7ee0563d154fc831f292cc275ce36aa13b9ecbd6 (diff) |
Fix small typo
Improper inflection of plurals.
Closes https://github.com/arthurdejong/python-stdnum/pull/299
-rw-r--r-- | stdnum/isin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdnum/isin.py b/stdnum/isin.py index 9463ec5..e1bbfca 100644 --- a/stdnum/isin.py +++ b/stdnum/isin.py @@ -69,7 +69,7 @@ _iso_3116_1_country_codes = [ 'TV', 'TW', 'TZ', 'UA', 'UG', 'UM', 'US', 'UY', 'UZ', 'VA', 'VC', 'VE', 'VG', 'VI', 'VN', 'VU', 'WF', 'WS', 'YE', 'YT', 'ZA', 'ZM', 'ZW'] -# These special code are allowed for ISIN +# These special codes are allowed for ISIN _country_codes = set(_iso_3116_1_country_codes + [ 'EU', # European Union 'QS', # internally used by Euroclear France |