Skip to content

Commit 70e1c68

Browse files
committed
Fixed '_resize_initial_model' since 'executables' dict stores Path objects now.
1 parent 816738a commit 70e1c68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/murfey/server/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1667,13 +1667,13 @@ def _resize_intial_model(
16671667
downscaled_pixel_size: float,
16681668
input_path: Path,
16691669
output_path: Path,
1670-
executables: Dict[str, str],
1670+
executables: Dict[str, Path],
16711671
env: Dict[str, str],
16721672
) -> None:
16731673
if executables.get("relion_image_handler"):
16741674
comp_proc = subprocess.run(
16751675
[
1676-
f"{executables['relion_image_handler']}",
1676+
f"{str(executables['relion_image_handler'])}",
16771677
"--i",
16781678
str(input_path),
16791679
"--new_box",

0 commit comments

Comments
 (0)