Commit f97f7bce by Bjorn Neergaard Committed by GitHub

fix(flake8): drop F401 from __init__.py ignores (#5814)

* fix(flake8): drop F401 from __init__.py ignores

* Update .flake8
parent 7bf67b37
...@@ -18,9 +18,8 @@ extend-ignore = ...@@ -18,9 +18,8 @@ extend-ignore =
# ANN102: Missing type annotation for cls in classmethod # ANN102: Missing type annotation for cls in classmethod
ANN102, ANN102,
per-file-ignores = per-file-ignores =
# F401: Module imported by unused (non-implicit modules)
# TC002: Move third-party import '...' into a type-checking block # TC002: Move third-party import '...' into a type-checking block
__init__.py:F401,TC002, __init__.py:TC002,
# ANN201: Missing return type annotation for public function # ANN201: Missing return type annotation for public function
tests/test_*:ANN201 tests/test_*:ANN201
tests/**/test_*:ANN201 tests/**/test_*:ANN201
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment