From 9350075ebf56a4cb14f0aa7372733d73fd7558d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 18 Feb 2026 16:34:25 +0000 Subject: [PATCH] format: auto-format code [skip ci] --- scripts/reinstall.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/reinstall.py b/scripts/reinstall.py index 6be0dcb..55b5ee7 100755 --- a/scripts/reinstall.py +++ b/scripts/reinstall.py @@ -48,7 +48,9 @@ def set_version(new_version: str) -> None: print(f" Updated tensors/__init__.py to {new_version}") -def run(cmd: list[str], *, check: bool = True, capture: bool = False, cwd: Path | None = None) -> subprocess.CompletedProcess[str]: +def run( + cmd: list[str], *, check: bool = True, capture: bool = False, cwd: Path | None = None +) -> subprocess.CompletedProcess[str]: """Run a command.""" print(f" $ {' '.join(cmd)}") return subprocess.run(cmd, check=check, capture_output=capture, text=True, cwd=cwd or PROJECT_ROOT)