Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
revert changes to make workflow_execution_dir a path or string.
  • Loading branch information
aclum authored Oct 8, 2024
1 parent dac9765 commit 7d6de52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nmdc_automation/import_automation/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def object_action(
action: str,
workflow_execution_id: str,
nmdc_suffix: str,
workflow_execution_dir: str,
workflow_execution_dir: str = None,
multiple: bool = False,
) -> str:
"""
Expand All @@ -23,7 +23,7 @@ def object_action(
action (str): The action to perform. Possible values are 'none', 'rename', or 'zip'.
workflow_execution_id (str): The workflow execution subclass ID associated with the object.
nmdc_suffix (str): The NMDC suffix.
workflow_execution_dir (str or Path, optional): The directory where the workflow execution subclass is located. Defaults to None.
workflow_execution_dir (str, optional): The directory where the workflow execution subclass is located. Defaults to None.
multiple (bool, optional): Indicates if multiple files are involved. Defaults to False.
Returns:
Expand Down

0 comments on commit 7d6de52

Please sign in to comment.