Skip to content

Commit e60f19c

Browse files
committed
Fix bad argument name
1 parent 66c648d commit e60f19c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

simvue/executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,10 @@ def callback_function(status_code: int, std_out: str, std_err: str) -> None:
167167
)
168168

169169
if script:
170-
self._runner.save_file(filename=script, category="code")
170+
self._runner.save_file(file_path=script, category="code")
171171

172172
if input_file:
173-
self._runner.save_file(filename=input_file, category="input")
173+
self._runner.save_file(file_path=input_file, category="input")
174174

175175
_command: typing.List[str] = []
176176

0 commit comments

Comments
 (0)