diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2021-08-07 16:54:06 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2021-08-10 14:49:26 +0200 |
commit | 48bfd84b02a09e014e01090b37fe188dc0ac895b (patch) | |
tree | b6762e4cc3fb1ad65fe6df38537d6e8f1ae4a4ac /update/numlist.py | |
parent | dcdb5c9bdd20da7fdd5f7fcc9806a2b3c1d0c7ab (diff) |
Fix typos found by codespell
Closes https://github.com/arthurdejong/python-stdnum/pull/269
Diffstat (limited to 'update/numlist.py')
-rwxr-xr-x | update/numlist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/update/numlist.py b/update/numlist.py index ec5c209..d815c5f 100755 --- a/update/numlist.py +++ b/update/numlist.py @@ -34,14 +34,14 @@ from stdnum import util # noqa, isort:skip # these are excluded -algortihms = ( +algorithms = ( 'stdnum.verhoeff', 'stdnum.luhn', 'stdnum.iso7064', 'stdnum.damm') def get_number_modules(): """Provide the number modules that are not algorithms.""" for module in util.get_number_modules(): - if module.__name__ not in algortihms and \ + if module.__name__ not in algorithms and \ not module.__name__.startswith('stdnum.iso7064'): yield module |