Skip to content

Commit

Permalink
fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jhidding committed Sep 17, 2024
1 parent bf89e97 commit 794f6f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entangled/hooks/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ def pre_tangle(self, refs: ReferenceMap):
}

record["runner"] = record["runner"] or runner
record["creates"] = ensure_list(record["creates"].split()) if record["creates"] else None
record["requires"] = ensure_list(record["requires"].split()) if record["requires"] else None
record["creates"] = ensure_list(record["creates"]) if record["creates"] else None
record["requires"] = ensure_list(record["requires"]) if record["requires"] else None
record["ref"] = ref

log.debug(f"task: {record}")
Expand Down

0 comments on commit 794f6f0

Please sign in to comment.