diff options
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py index 7da466e6..11007cb6 100644 --- a/git/remote.py +++ b/git/remote.py @@ -23,6 +23,7 @@ from git.util import ( ) from .config import ( + GitConfigParser, SectionConstraint, cp, ) @@ -911,7 +912,7 @@ class Remote(LazyMixin, IterableObj): return self._get_push_info(proc, progress) @ property - def config_reader(self) -> SectionConstraint: + def config_reader(self) -> SectionConstraint[GitConfigParser]: """ :return: GitConfigParser compatible object able to read options for only our remote. |