format: fix few black issues
authorpaugier <pierre.augier@univ-grenoble-alpes.fr>
Sun, 13 Oct 2024 04:55:48 +0200
changeset 52004 e3952d8cfeb5
parent 52003 d4b275587847
child 52005 028bac79cf34
format: fix few black issues
contrib/perf.py
tests/test-lock.py
tests/test-trusted.py
--- 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()