summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-07-19 19:49:16 +0100
committerYobmod <yobmod@gmail.com>2021-07-19 19:49:16 +0100
commitdcfedb27dc720683bbadb7353d96cfec2a99c476 (patch)
treea1c4c1137e60f42ee31caf69eed325170143644e
parente666e3b5d5a6869365342d47325f75d86146a5b8 (diff)
downloadgitpython-dcfedb27dc720683bbadb7353d96cfec2a99c476.tar.gz
update types in types.py
-rw-r--r--.flake84
1 files changed, 2 insertions, 2 deletions
diff --git a/.flake8 b/.flake8
index 9759dc83..e22e8de0 100644
--- a/.flake8
+++ b/.flake8
@@ -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,