Skip to content
Prev Previous commit
Next Next commit
import ordereddict from types
  • Loading branch information
Yobmod committed Jul 24, 2021
commit 981cfa8d6161d83383610733cf86487ced7a4e6c
3 changes: 1 addition & 2 deletions git/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
configuration files"""

import abc
from typing import OrderedDict
from functools import wraps
import inspect
from io import BufferedReader, IOBase
Expand All @@ -34,7 +33,7 @@
from typing import (Any, Callable, Generic, IO, List, Dict, Sequence,
TYPE_CHECKING, Tuple, TypeVar, Union, cast, overload)

from git.types import Lit_config_levels, ConfigLevels_Tup, PathLike, TBD, assert_never, _T
from git.types import Lit_config_levels, ConfigLevels_Tup, OrderedDict, PathLike, TBD, assert_never, _T

if TYPE_CHECKING:
from git.repo.base import Repo
Expand Down