Skip to content

Commit

Permalink
Fixed log output
Browse files Browse the repository at this point in the history
  • Loading branch information
awicenec committed Apr 12, 2024
1 parent 662ffc4 commit 49c0efd
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions daliuge-engine/dlg/named_port_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ def replace_named_ports(
separator: character used between keyword and value
parser: reader function for ports
Returns:
tuple of serialized keyword arguments and positional arguments
"""
Expand All @@ -218,10 +220,7 @@ def replace_named_ports(

outputs_dict = collections.OrderedDict()
for uid, drop in oitems:
outputs_dict[uid] = {
"drop": drop,
"path": drop.path if hasattr(drop, "path") else "",
}
outputs_dict[uid] = {"path": drop.path if hasattr(drop, "path") else ""}
# logger.debug("appArgs: %s", appArgs)
# get positional args
posargs = [arg for arg in appArgs if appArgs[arg]["positional"]]
Expand Down

0 comments on commit 49c0efd

Please sign in to comment.