diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2022-08-13 17:14:32 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2022-08-13 17:16:24 +0200 |
commit | 7ee0563d154fc831f292cc275ce36aa13b9ecbd6 (patch) | |
tree | dd23138ac75b4385a4ffc3bfe9b1b4e7fe79de60 /stdnum/id | |
parent | 351be74e0d0da0e1ac5062a04fa161df12ca6c31 (diff) |
Put long line flake8 ignores in files instead of globally
We have some long URLs in the code (mostly in docstrings) and wrapping
them does not improve readability (and is difficult in docstrings) so
the E501 ignore is now put inside each file instead of globally.
Closes https://github.com/arthurdejong/python-stdnum/pull/302
Diffstat (limited to 'stdnum/id')
-rw-r--r-- | stdnum/id/npwp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdnum/id/npwp.py b/stdnum/id/npwp.py index de14a54..cfa668c 100644 --- a/stdnum/id/npwp.py +++ b/stdnum/id/npwp.py @@ -45,7 +45,7 @@ Traceback (most recent call last): InvalidLength: ... >>> format('013000666091000') '01.300.066.6-091.000' -""" +""" # noqa: E501 from stdnum import luhn from stdnum.exceptions import * |