D11665: formatting: format with newer black version
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Thu Oct 14 20:12:14 UTC 2021
martinvonz created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
My `black` was upgraded from 20.8b1-4 to 21.4b2-3 today, which made
`test-check-format.t` fail. I don't know if we have specified a
particular version we're supposed to use. I also haven't tried to
downgrade black to see if the old version will complain about the new
format.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11665
AFFECTED FILES
mercurial/localrepo.py
CHANGE DETAILS
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -360,7 +360,7 @@
common=None,
bundlecaps=None,
remote_sidedata=None,
- **kwargs
+ **kwargs,
):
chunks = exchange.getbundlechunks(
self._repo,
@@ -369,7 +369,7 @@
common=common,
bundlecaps=bundlecaps,
remote_sidedata=remote_sidedata,
- **kwargs
+ **kwargs,
)[1]
cb = util.chunkbuffer(chunks)
@@ -2447,7 +2447,7 @@
repo.hook(
b'pretxnclose-bookmark',
throw=True,
- **pycompat.strkwargs(args)
+ **pycompat.strkwargs(args),
)
if hook.hashook(repo.ui, b'pretxnclose-phase'):
cl = repo.unfiltered().changelog
@@ -2459,7 +2459,7 @@
repo.hook(
b'pretxnclose-phase',
throw=True,
- **pycompat.strkwargs(args)
+ **pycompat.strkwargs(args),
)
repo.hook(
@@ -2536,7 +2536,7 @@
repo.hook(
b'txnclose-bookmark',
throw=False,
- **pycompat.strkwargs(args)
+ **pycompat.strkwargs(args),
)
if hook.hashook(repo.ui, b'txnclose-phase'):
@@ -2552,7 +2552,7 @@
repo.hook(
b'txnclose-phase',
throw=False,
- **pycompat.strkwargs(args)
+ **pycompat.strkwargs(args),
)
repo.hook(
To: martinvonz, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list