Mercurial > hg-stable
changeset 52034:e3952d8cfeb5
format: fix few black issues
author | paugier <pierre.augier@univ-grenoble-alpes.fr> |
---|---|
date | Sun, 13 Oct 2024 04:55:48 +0200 |
parents | d4b275587847 |
children | 028bac79cf34 |
files | contrib/perf.py tests/test-lock.py tests/test-trusted.py |
diffstat | 3 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/perf.py Thu Oct 10 09:54:55 2024 +0200 +++ b/contrib/perf.py Sun Oct 13 04:55:48 2024 +0200 @@ -4509,7 +4509,7 @@ sets=10000, mixed=10000, mixedgetfreq=50, - **opts + **opts, ): opts = _byteskwargs(opts)
--- a/tests/test-lock.py Thu Oct 10 09:54:55 2024 +0200 +++ b/tests/test-lock.py Sun Oct 13 04:55:48 2024 +0200 @@ -52,7 +52,7 @@ releasefn=self.releasefn, acquirefn=self.acquirefn, *args, - **kwargs + **kwargs, ) l.postrelease.append(self.postreleasefn) return l
--- a/tests/test-trusted.py Thu Oct 10 09:54:55 2024 +0200 +++ b/tests/test-trusted.py Sun Oct 13 04:55:48 2024 +0200 @@ -29,7 +29,7 @@ def bprint(*args, **kwargs): print( *[_maybesysstr(a) for a in args], - **{k: _maybesysstr(v) for k, v in kwargs.items()} + **{k: _maybesysstr(v) for k, v in kwargs.items()}, ) # avoid awkward interleaving with ui object's output sys.stdout.flush()