summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-01-04 21:12:53 +0100
committerSébastien Helleu <flashcode@flashtux.org>2023-01-04 21:12:53 +0100
commite6857871f0eff7ea05b954d9c2b78f61d7990e46 (patch)
treee0e24ff7857a5b90baed811b0837b41f68a93440 /tests/scripts
parentd1f2d54a1e654390f77e85bd271d5f6dff8d4735 (diff)
downloadweechat-e6857871f0eff7ea05b954d9c2b78f61d7990e46.zip
tests: ignore module level import not at top of file (flake8 E402)
Diffstat (limited to 'tests/scripts')
-rwxr-xr-xtests/scripts/python/testapigen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scripts/python/testapigen.py b/tests/scripts/python/testapigen.py
index a6a0bf016..e41ecbdb2 100755
--- a/tests/scripts/python/testapigen.py
+++ b/tests/scripts/python/testapigen.py
@@ -50,7 +50,7 @@ sys.dont_write_bytecode = True
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.append(SCRIPT_DIR)
-from unparse import (
+from unparse import ( # noqa: E402
UnparsePython,
UnparsePerl,
UnparseRuby,