Skip to content

Commit 7096595

Browse files
authoredMar 13, 2025··
Changed parameter declaration in add_file_to_volume function (#1186)
Changed parameter declaration from `tags=list[str]` to `tags: list[str] = []` Signed-off-by: ali <[email protected]>
1 parent 918c1ab commit 7096595

File tree

1 file changed

+1
-1
lines changed
  • backend/workflow_manager/endpoint_v2

1 file changed

+1
-1
lines changed
 

‎backend/workflow_manager/endpoint_v2/source.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ def add_file_to_volume(
627627
self,
628628
input_file_path: str,
629629
workflow_file_execution: WorkflowFileExecution,
630-
tags=list[str],
630+
tags: list[str] = [],
631631
) -> str:
632632
"""Add input file to execution directory.
633633

0 commit comments

Comments
 (0)
Please sign in to comment.