summaryrefslogtreecommitdiff
path: root/release.py
diff options
context:
space:
mode:
Diffstat (limited to 'release.py')
-rw-r--r--release.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release.py b/release.py
index 83de6b4..012d92d 100644
--- a/release.py
+++ b/release.py
@@ -71,7 +71,9 @@ def download_artifacts_github_actions(session, token, run_url):
continue
p = z.open(name)
out_path = os.path.join(
- os.path.dirname(__file__), "dist", os.path.basename(name),
+ os.path.dirname(__file__),
+ "dist",
+ os.path.basename(name),
)
with open(out_path, "wb") as f:
f.write(p.read())