From 126583f05e9e91e5683634bed0e21c257b8bc2f7 Mon Sep 17 00:00:00 2001 From: Clement Rey Date: Wed, 5 Jul 2023 10:10:37 +0200 Subject: [PATCH] format --- scripts/ci/run_e2e_roundtrip_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/run_e2e_roundtrip_tests.py b/scripts/ci/run_e2e_roundtrip_tests.py index 84d765f56151..708d47455cb2 100755 --- a/scripts/ci/run_e2e_roundtrip_tests.py +++ b/scripts/ci/run_e2e_roundtrip_tests.py @@ -77,7 +77,7 @@ def run_roundtrip_rust(arch: str, release: bool, target_dir: str | None) -> str: cmd = ["cargo", "r", "-p", project_name] if target_dir is not None: - cmd += ["--target-dir", target_dir] + cmd += ["--target-dir", target_dir] if release: cmd += ["--release"]