There was an error while loading. Please reload this page.
1 parent 77ee247 commit 04e181fCopy full SHA for 04e181f
1 file changed
git/types.py
@@ -8,9 +8,10 @@
8
NamedTuple, TYPE_CHECKING, TypeVar) # noqa: F401
9
10
if sys.version_info[:2] >= (3, 8):
11
- from typing import Final, Literal, SupportsIndex, TypedDict, Protocol, runtime_checkable # noqa: F401
+ from typing import Final, Literal, SupportsIndex, TypedDict, Protocol, runtime_checkable, OrderedDict # noqa: F401
12
else:
13
- from typing_extensions import Final, Literal, SupportsIndex, TypedDict, Protocol, runtime_checkable # noqa: F401
+ from typing_extensions import (Final, Literal, SupportsIndex, # noqa: F401
14
+ TypedDict, Protocol, runtime_checkable, OrderedDict) # noqa: F401
15
16
# if sys.version_info[:2] >= (3, 10):
17
# from typing import TypeGuard # noqa: F401
0 commit comments