Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Dec 20, 2024
1 parent ff412b0 commit 89c7a80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fetch_last_known_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def main(args):
# Get the target UDF from the step field
target_udf = process.udf.get(args.step_udf, None)
assert (
target_udf is not None or target_udf != "None"
target_udf is not None and target_udf != "None"
), f"No target UDF supplied from step field '{args.step_udf}'"

# Check whether process has output artifacts, not the case for e.g. QC steps
Expand Down

0 comments on commit 89c7a80

Please sign in to comment.