]> git.scottworley.com Git - pinch/commitdiff
Appease newer autopep8
authorScott Worley <scottworley@scottworley.com>
Wed, 9 Jul 2025 23:14:07 +0000 (16:14 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 9 Jul 2025 23:14:07 +0000 (16:14 -0700)
pinch.py

index 9e80c01436aa2071501be22e3048f70473ef4aad..1a3a94b5ee041693f56f2e5eed227cdfa4a02e75 100644 (file)
--- a/pinch.py
+++ b/pinch.py
@@ -570,7 +570,9 @@ def git_revision_name(
                               git_revision],
                              stdout=subprocess.PIPE)
     v.result(process.returncode == 0 and process.stdout != b'')
-    return f'{os.path.basename(channel.git_repo)}-{process.stdout.decode().strip()}'
+    return f'{
+        os.path.basename(channel.git_repo)}-{
+        process.stdout.decode().strip()}'
 
 
 K = TypeVar('K')