diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-10-15 22:01:33 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-10-15 22:01:33 +0200 |
commit | 7a544d5fcfd17536376252963172ea2341236709 (patch) | |
tree | c6fdca4d1e0085e172bc9beca49a29020a84ef50 /tests/scripts/python/testapi.py | |
parent | 56dbd871ea5fb4a1aa27f74eba8907f0a962db7f (diff) | |
download | weechat-7a544d5fcfd17536376252963172ea2341236709.zip |
tests: ignore pylint error unnecessary-pass
Diffstat (limited to 'tests/scripts/python/testapi.py')
-rw-r--r-- | tests/scripts/python/testapi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scripts/python/testapi.py b/tests/scripts/python/testapi.py index 2b12e8011..60a6ea1b6 100644 --- a/tests/scripts/python/testapi.py +++ b/tests/scripts/python/testapi.py @@ -181,12 +181,12 @@ def option_check_value_cb(data, option, value): def option_change_cb(data, option): """Option change callback.""" - pass + pass # pylint: disable=unnecessary-pass def option_delete_cb(data, option): """Option delete callback.""" - pass + pass # pylint: disable=unnecessary-pass def test_config(): |