diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2021-08-03 16:44:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 16:44:10 +0100 |
commit | 335e59dc2cece491a5c5d42396ce70d4ed0715b5 (patch) | |
tree | f4f00f02952326c5cd18d01bc213f4793cf2bd12 /git/config.py | |
parent | ff0ecf7ff56ea1e19f0c4e3be24b893049939916 (diff) | |
download | gitpython-335e59dc2cece491a5c5d42396ce70d4ed0715b5.tar.gz |
Update config.py
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 d65360fe..3c08dd5f 100644 --- a/git/config.py +++ b/git/config.py @@ -708,12 +708,12 @@ class GitConfigParser(cp.RawConfigParser, metaclass=MetaParserBuilder): return self._read_only @overload - def get_value(self, section: str, option: str, default: Optional[str] + def get_value(self, section: str, option: str, default: Optional[str] = None ) -> str: ... @overload - def get_value(self, section: str, option: str, default: Optional[float] + def get_value(self, section: str, option: str, default: Optional[float] = None ) -> float: ... |