diff options
author | Yobmod <yobmod@gmail.com> | 2021-08-02 15:30:15 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-08-02 15:30:15 +0100 |
commit | 15ace876d98d70c48a354ec8f526d6c8ad6b8d97 (patch) | |
tree | 19648703ae947894063dae0549a7b9a6e8715987 /git/config.py | |
parent | 91fce331de16de6039c94cd4d7314184a5763e61 (diff) | |
download | gitpython-15ace876d98d70c48a354ec8f526d6c8ad6b8d97.tar.gz |
rmv 3.6 from CI matrix
Diffstat (limited to 'git/config.py')
-rw-r--r-- | git/config.py | 4 |
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'): |