Skip to content

Commit

Permalink
shut up mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Dec 20, 2024
1 parent 3434eed commit d6ade1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scilifelab_epps/utils/udf_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ def list_udfs(art: Artifact) -> list:
def fetch_last(
currentStep: Process,
target_udfs: str | list,
art_tuple: tuple = None,
art: Artifact = None,
art_tuple=None,
art=None,
use_current=True,
print_history=False,
on_fail=AssertionError,
Expand All @@ -147,9 +147,9 @@ def fetch_last(
Arguments:
- "art_tuple": step input-output tuple. Mutually exclusive use with "art".
- "art_tuple": step input-output tuple or none. Mutually exclusive use with "art".
- "art": step artifact, either input or output. Mutually exclusive use with "art_tuple".
- "art": step artifact, either input or output or none. Mutually exclusive use with "art_tuple".
- "target_udfs": can be supplied as a string, or as a
prioritized list of strings.
Expand Down

0 comments on commit d6ade1b

Please sign in to comment.