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

View file

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