diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-08-02 21:21:07 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-08-02 21:21:07 +0200 |
commit | a7364d055b3b52eb8669b2f17db32e64635d50fc (patch) | |
tree | 31b41aa91c2b7047e0a86570ff2b30061de66542 | |
parent | 4d4a6f99f9a1c6b97bc024c7c73661c64628c3c7 (diff) | |
download | weechat-a7364d055b3b52eb8669b2f17db32e64635d50fc.zip |
tests: disable pylint errors in testapi.py
-rw-r--r-- | tests/scripts/python/testapi.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/scripts/python/testapi.py b/tests/scripts/python/testapi.py index e948d8c6f..75a119b8d 100644 --- a/tests/scripts/python/testapi.py +++ b/tests/scripts/python/testapi.py @@ -25,7 +25,8 @@ to generate scripts in all supported languages (Python, Perl, Ruby, ...). The resulting scripts can be loaded in WeeChat to test the scripting API. """ -# pylint: disable=line-too-long,no-value-for-parameter +# pylint: disable=line-too-long,no-value-for-parameter,too-many-locals +# pylint: disable=too-many-statements import weechat # pylint: disable=import-error |