Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/yoke/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ def native_input(self) -> dict[str, Any]:
if self.native_name is not None:
data["name"] = self.native_name
if self.script_path is not None:
data["scriptPath"] = str(self.script_path)
data["scriptPath"] = self.script_path.as_posix()
if self.args is not None:
data["args"] = self.args
if self.resume_from_run_id is not None:
Expand Down