From a18015d0cd524eabf90162404f366e777577d49c Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Fri, 7 Feb 2025 16:34:55 -0500 Subject: [PATCH] Restyle --- scripts/tests/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tests/local.py b/scripts/tests/local.py index f655d23e14801b..221bf9608515c2 100755 --- a/scripts/tests/local.py +++ b/scripts/tests/local.py @@ -322,7 +322,7 @@ def _with_activate(build_cmd: List[str], output_path=None) -> List[str]: Given a bash command list, will generate a new command suitable for subprocess with an execution of `scripts/activate.sh` prepended to it """ - cmd = shlex.join(build_cmd); + cmd = shlex.join(build_cmd) if output_path: cmd = cmd + f" >{output_path}"