summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-03-16 20:11:06 +0100
committerSébastien Helleu <flashcode@flashtux.org>2021-03-19 09:14:59 +0100
commit611ea27edcb1d0062dc8bfd18bebe2cbd738b0aa (patch)
tree72f7dfc556c04a01c187968bbda5990a9e7540ce /tests/scripts
parentbacd50c7a74af909dca251ae110f19664eb7f9bf (diff)
downloadweechat-611ea27edcb1d0062dc8bfd18bebe2cbd738b0aa.zip
tests: disable pylint error useless-object-inheritance
Diffstat (limited to 'tests/scripts')
-rwxr-xr-xtests/scripts/python/testapigen.py1
-rwxr-xr-xtests/scripts/python/unparse.py2
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