Skip to content

Commit a81551c

Browse files
author
Alan Christie
committed
test: Parameter type change
1 parent 4da15f6 commit a81551c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

workflow/workflow_abc.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -323,12 +323,10 @@ def get_job(
323323

324324
@abstractmethod
325325
def realise_outputs(
326-
self, *, running_workflow_step_id: str, output_variables: dict[str, str]
326+
self, *, running_workflow_step_id: str, outputs: list[str]
327327
) -> tuple[dict[str, Any], int]:
328328
"""Copy (link) the step's files as outputs into the Project directory.
329-
A step ID is provided, along with a map of variables (names and values).
330-
The variable values are used to locate files in the instance that are copied
331-
(linked) to the Project directory."""
329+
A step ID is provided, along with a list of outputs (files)."""
332330
# Should return an empty map or:
333331
# {
334332
# "error": "<error message>",

0 commit comments

Comments
 (0)