Skip to content

Commit b4be311

Browse files
author
Alan Christie
committed
feat: Rename new API method
1 parent ab94bd7 commit b4be311

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/wapi_adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def get_running_workflow_steps(self, *, running_workflow_id: str) -> dict[str, A
381381
steps.append(item)
382382
return {"count": len(steps), "running_workflow_steps": steps}
383383

384-
def get_generated_outputs_for_step_output(
384+
def get_running_workflow_step_outputs(
385385
self, *, running_workflow_step_id: str, output: str
386386
) -> tuple[dict[str, Any], int]:
387387
del running_workflow_step_id

workflow/workflow_abc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def get_job(
342342
# If not present an empty dictionary should be returned.
343343

344344
@abstractmethod
345-
def get_generated_outputs_for_step_output(
345+
def get_running_workflow_step_outputs(
346346
self, *, running_workflow_step_id: str, output: str
347347
) -> tuple[dict[str, Any], int]:
348348
"""Gets the set of outputs for the output variable of a given step.

0 commit comments

Comments
 (0)