diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-03-16 20:11:06 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-03-19 09:14:59 +0100 |
commit | 611ea27edcb1d0062dc8bfd18bebe2cbd738b0aa (patch) | |
tree | 72f7dfc556c04a01c187968bbda5990a9e7540ce /tests/scripts | |
parent | bacd50c7a74af909dca251ae110f19664eb7f9bf (diff) | |
download | weechat-611ea27edcb1d0062dc8bfd18bebe2cbd738b0aa.zip |
tests: disable pylint error useless-object-inheritance
Diffstat (limited to 'tests/scripts')
-rwxr-xr-x | tests/scripts/python/testapigen.py | 1 | ||||
-rwxr-xr-x | tests/scripts/python/unparse.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/scripts/python/testapigen.py b/tests/scripts/python/testapigen.py index 28d42c0c9..52e4b8ca8 100755 --- a/tests/scripts/python/testapigen.py +++ b/tests/scripts/python/testapigen.py @@ -30,6 +30,7 @@ It uses the following scripts: """ # pylint: disable=wrong-import-order,wrong-import-position +# pylint: disable=useless-object-inheritance from __future__ import print_function import argparse diff --git a/tests/scripts/python/unparse.py b/tests/scripts/python/unparse.py index 53d809a91..40a04bb09 100755 --- a/tests/scripts/python/unparse.py +++ b/tests/scripts/python/unparse.py @@ -22,7 +22,7 @@ Unparse AST tree to generate scripts in all supported languages (Python, Perl, Ruby, ...). """ -# pylint: disable=too-many-lines,unnecessary-pass +# pylint: disable=too-many-lines,unnecessary-pass,useless-object-inheritance from __future__ import print_function import argparse |