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}"