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 5d63ef7 commit 417f351
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions daliuge-engine/dlg/named_port_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ def replace_named_ports(
parser: reader function for ports
Returns:
tuple of serialized keyword arguments and positional arguments
"""
Expand All @@ -219,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 417f351

Please sign in to comment.