diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-04-23 21:36:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 21:36:48 +0800 |
commit | 4119a576251448793c07ebd080534948cad2f170 (patch) | |
tree | 7bffff60a75770882832eec5ff2efcac9741139f /git/config.py | |
parent | 9f12c8c34371a7c46dad6788a48cf092042027ec (diff) | |
parent | 043e15fe140cfff8725d4f615f42fa1c55779402 (diff) | |
download | gitpython-4119a576251448793c07ebd080534948cad2f170.tar.gz |
Merge pull request #1226 from muggenhor/testing
ci: check types with mypy
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. |