Skip to content

Commit 76c1c8d

Browse files
committed
Revert "More specific version check for ordered dict type"
This reverts commit 005f81a.
1 parent 005f81a commit 76c1c8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
T_ConfigParser = TypeVar('T_ConfigParser', bound='GitConfigParser')
4343

44-
if sys.version_info[:3] < (3, 7, 2):
44+
if sys.version_info[:2] < (3, 7):
4545
from collections import OrderedDict
4646
OrderedDict_OMD = OrderedDict
4747
else:

0 commit comments

Comments
 (0)