mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
disable particular linter issue
build.py:31:1: E402 module level import not at top of file
This commit is contained in:
parent
02d48f0ae5
commit
c6e40329e6
1 changed files with 1 additions and 1 deletions
2
build.py
2
build.py
|
@ -28,7 +28,7 @@ if sys.version_info < _min_version:
|
|||
|
||||
sys.dont_write_bytecode = True
|
||||
|
||||
from aedi import Builder
|
||||
from aedi import Builder # noqa: E402
|
||||
|
||||
if __name__ == '__main__':
|
||||
Builder(sys.argv[1:]).run()
|
||||
|
|
Loading…
Reference in a new issue