Skip to content

Commit 9448c08

Browse files
committed
Fix flake8
1 parent f8e2232 commit 9448c08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git/compat/typing.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
import sys
99

1010
if sys.version_info[:2] >= (3, 8):
11-
from typing import Final, Literal
11+
from typing import Final, Literal # noqa: F401
1212
else:
13-
from typing_extensions import Final, Literal
13+
from typing_extensions import Final, Literal # noqa: F401

0 commit comments

Comments
 (0)