Skip to content

Commit 9cc70b4

Browse files
committed
Fix linting
1 parent 215cee6 commit 9cc70b4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

spin/cmds/meson.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -484,9 +484,7 @@ def test(
484484
cmd = ["pytest"]
485485

486486
p = _run(
487-
cmd
488-
+ ([f"--rootdir={site_path}"] if site_path else [])
489-
+ list(pytest_args),
487+
cmd + ([f"--rootdir={site_path}"] if site_path else []) + list(pytest_args),
490488
cwd=site_path,
491489
replace=True,
492490
)

0 commit comments

Comments
 (0)