pycodestyle: Ignore E402

E402 is 'module level import not at top of file'.
This commit is contained in:
Sanchayan Maity 2021-10-18 14:03:51 +05:30
parent bfb4d258b3
commit d99bdc82c1
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
[pycodestyle] [pycodestyle]
count = False count = False
ignore = E501,W503 ignore = E402,E501,W503
statistics = True statistics = True