subrepo: let black expand some call on multiple lines early
newer version of black are righfully doing this, so I apply it before more
semantic change to reduce noise in the next changeset.
--- a/mercurial/subrepo.py Wed Dec 14 00:43:24 2022 +0100
+++ b/mercurial/subrepo.py Sat Feb 04 12:14:19 2023 +0100
@@ -570,7 +570,13 @@
@annotatesubrepoerror
def add(self, ui, match, prefix, uipathfn, explicitonly, **opts):
return cmdutil.add(
- ui, self._repo, match, prefix, uipathfn, explicitonly, **opts
+ ui,
+ self._repo,
+ match,
+ prefix,
+ uipathfn,
+ explicitonly,
+ **opts,
)
@annotatesubrepoerror
@@ -621,7 +627,7 @@
match,
prefix=prefix,
listsubrepos=True,
- **opts
+ **opts,
)
except error.RepoLookupError as inst:
self.ui.warn(
@@ -1123,7 +1129,7 @@
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
env=procutil.tonativeenv(env),
- **extrakw
+ **extrakw,
)
stdout, stderr = map(util.fromnativeeol, p.communicate())
stderr = stderr.strip()
@@ -1488,7 +1494,7 @@
close_fds=procutil.closefds,
stdout=subprocess.PIPE,
stderr=errpipe,
- **extrakw
+ **extrakw,
)
if stream:
return p.stdout, None