diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-19 19:49:16 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-19 19:49:16 +0100 |
commit | dcfedb27dc720683bbadb7353d96cfec2a99c476 (patch) | |
tree | a1c4c1137e60f42ee31caf69eed325170143644e | |
parent | e666e3b5d5a6869365342d47325f75d86146a5b8 (diff) | |
download | gitpython-dcfedb27dc720683bbadb7353d96cfec2a99c476.tar.gz |
update types in types.py
-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, |