mercurial/subrepo.py
changeset 50045 bbe3a65bbd96
parent 49392 b9fcf54030d7
child 50046 2264e775512b
--- 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