From 5b90068fe4b41edc994c9a13dd5347562cde3d93 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 4 Jun 2026 19:26:53 +0900 Subject: [PATCH] chore: wrap line --- scripts/release.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/release.py b/scripts/release.py index e488948..d39703a 100644 --- a/scripts/release.py +++ b/scripts/release.py @@ -45,7 +45,15 @@ env["PYAPP_DISTRIBUTION_PATH"] = str(cpython) env["PYAPP_DISTRIBUTION_PYTHON_PATH"] = "python/bin/python3" platform = "x86_64-unknown-linux-musl" -build_params = ["cargo", "build", "--release", "--target-dir", str(dist_dir), "--target", platform] +build_params = [ + "cargo", + "build", + "--release", + "--target-dir", + str(dist_dir), + "--target", + platform, +] proc = subprocess.run( build_params,