We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cb4df3 commit a33b800Copy full SHA for a33b800
git/remote.py
@@ -575,7 +575,10 @@ def _set_cache_(self, attr: str) -> None:
575
if attr == "_config_reader":
576
# NOTE: This is cached as __getattr__ is overridden to return remote config
577
# values implicitly, such as in print(r.pushurl).
578
- self._config_reader = SectionConstraint(self.repo.config_reader("repository"), self._config_section_name())
+ self._config_reader = SectionConstraint(
579
+ self.repo.config_reader("repository"),
580
+ self._config_section_name(),
581
+ )
582
else:
583
super()._set_cache_(attr)
584
0 commit comments