Skip to content

Commit b3ab7ef

Browse files
committed
fix f string for mac
1 parent f8a59fb commit b3ab7ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_cli_3D_diam(data_dir, image_names_3d):
117117
clear_output(data_dir, image_names_3d)
118118
use_gpu = torch.cuda.is_available()
119119
gpu_string = "--use_gpu" if use_gpu else ""
120-
cmd = f"python -m cellpose --image_path {str(data_dir / "3D" / image_names_3d[0])} --do_3D --diameter 25 --save_tif {gpu_string} --verbose"
120+
cmd = f"python -m cellpose --image_path {str(data_dir / '3D' / image_names_3d[0])} --do_3D --diameter 25 --save_tif {gpu_string} --verbose"
121121
try:
122122
cmd_stdout = check_output(cmd, stderr=STDOUT, shell=True).decode()
123123
print(cmd_stdout)

0 commit comments

Comments
 (0)