summaryrefslogtreecommitdiff
path: root/git/config.py
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-08-02 15:30:15 +0100
committerYobmod <yobmod@gmail.com>2021-08-02 15:30:15 +0100
commit15ace876d98d70c48a354ec8f526d6c8ad6b8d97 (patch)
tree19648703ae947894063dae0549a7b9a6e8715987 /git/config.py
parent91fce331de16de6039c94cd4d7314184a5763e61 (diff)
downloadgitpython-15ace876d98d70c48a354ec8f526d6c8ad6b8d97.tar.gz
rmv 3.6 from CI matrix
Diffstat (limited to 'git/config.py')
-rw-r--r--git/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/config.py b/git/config.py
index 2a5aa142..293281d2 100644
--- a/git/config.py
+++ b/git/config.py
@@ -301,9 +301,9 @@ class GitConfigParser(cp.RawConfigParser, metaclass=MetaParserBuilder):
"""
cp.RawConfigParser.__init__(self, dict_type=_OMD)
- self._dict: Callable[..., _OMD] # type: ignore[assignment] # mypy/typeshed bug
+ self._dict: Callable[..., _OMD] # type: ignore # mypy/typeshed bug?
self._defaults: _OMD
- self._sections: _OMD # type: ignore[assignment] # mypy/typeshed bug
+ self._sections: _OMD # type: ignore # mypy/typeshed bug?
# Used in python 3, needs to stay in sync with sections for underlying implementation to work
if not hasattr(self, '_proxies'):