From 48bfd84b02a09e014e01090b37fe188dc0ac895b Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 7 Aug 2021 16:54:06 +0200 Subject: Fix typos found by codespell Closes https://github.com/arthurdejong/python-stdnum/pull/269 --- update/numlist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'update/numlist.py') 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 -- cgit v1.2.3