diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-09 15:07:50 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-09 15:07:50 +0100 |
commit | 7c6ae2b94cfd1593c12366b6abc0cd5bbb6e07b2 (patch) | |
tree | 65288c0fc32f295ebe440a27033d4270ea8430f5 /git/remote.py | |
parent | 627166094f9280a3e00b755b754a4bd6ed72bb66 (diff) | |
download | gitpython-7c6ae2b94cfd1593c12366b6abc0cd5bbb6e07b2.tar.gz |
Try to distinguation git.diff module from diff.Diff.diff and diff.Daffable.diff()
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py index 739424ee..2998b987 100644 --- a/git/remote.py +++ b/git/remote.py @@ -469,7 +469,7 @@ class Remote(LazyMixin, IterableObj): def _config_section_name(self) -> str: return 'remote "%s"' % self.name - def _set_cache_(self, attr: str) -> Any: + def _set_cache_(self, attr: str) -> None: if attr == "_config_reader": # NOTE: This is cached as __getattr__ is overridden to return remote config values implicitly, such as # in print(r.pushurl) |