diff options
author | Giel van Schijndel <giel@mortis.eu> | 2021-04-23 12:24:53 +0200 |
---|---|---|
committer | Giel van Schijndel <giel@mortis.eu> | 2021-04-23 15:23:11 +0200 |
commit | 76ba0924be14d55d01db0506b3e6a930cc72bf0d (patch) | |
tree | 9ac64e4f00f045c588f11c0f36bfb58dc392aa30 /git/config.py | |
parent | 8470777b44bed4da87aad9474f88e7f0774252a6 (diff) | |
download | gitpython-76ba0924be14d55d01db0506b3e6a930cc72bf0d.tar.gz |
improvement(mypy): ignore false positives
Diffstat (limited to 'git/config.py')
-rw-r--r-- | git/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/config.py b/git/config.py index aadb0aac..1cb80475 100644 --- a/git/config.py +++ b/git/config.py @@ -216,7 +216,7 @@ def get_config_path(config_level: Literal['system', 'global', 'user', 'repositor raise ValueError("Invalid configuration level: %r" % config_level) -class GitConfigParser(with_metaclass(MetaParserBuilder, cp.RawConfigParser, object)): +class GitConfigParser(with_metaclass(MetaParserBuilder, cp.RawConfigParser, object)): # type: ignore ## mypy does not understand dynamic class creation # noqa: E501 """Implements specifics required to read git style configuration files. |