diff options
-rw-r--r-- | .flake8 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ statistics = True # W293 = Blank line contains whitespace # W504 = Line break after operator # E704 = multiple statements in one line - used for @override -# TC002 = +# TC002 = move third party import to TYPE_CHECKING # ANN = flake8-annotations # TC, TC2 = flake8-type-checking # D = flake8-docstrings @@ -19,7 +19,7 @@ enable-extensions = TC, TC2 # only needed for extensions not enabled by default ignore = E265,E266,E731,E704, W293, W504, ANN0 ANN1 ANN2, - # TC0, TC1, TC2 + TC002, # TC0, TC1, TC2 # B, A, D, |