disable particular linter issue

build.py:31:1: E402 module level import not at top of file
This commit is contained in:
alexey.lysiuk 2021-08-04 09:35:23 +03:00
parent 02d48f0ae5
commit c6e40329e6

View file

@ -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()