diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-04 21:12:53 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-04 21:12:53 +0100 |
commit | e6857871f0eff7ea05b954d9c2b78f61d7990e46 (patch) | |
tree | e0e24ff7857a5b90baed811b0837b41f68a93440 /tests/scripts | |
parent | d1f2d54a1e654390f77e85bd271d5f6dff8d4735 (diff) | |
download | weechat-e6857871f0eff7ea05b954d9c2b78f61d7990e46.zip |
tests: ignore module level import not at top of file (flake8 E402)
Diffstat (limited to 'tests/scripts')
-rwxr-xr-x | tests/scripts/python/testapigen.py | 2 |
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, |