summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-08-26 22:47:24 -0400
committerGitHub <noreply@github.com>2020-08-26 21:47:24 -0500
commit8ec8842d9f34bee538594d69e003640a39c4cb69 (patch)
treefd671e66102a207532ff0310c1926b1093640f94
parent06bdac893b726c93146606fe5f7f27838460a7f2 (diff)
downloadpy-bcrypt-git-8ec8842d9f34bee538594d69e003640a39c4cb69.tar.gz
Different day, different black (#232)
-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())