--- 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()