From 49c0efd1d8c0a23f0deedf622db9cf12a8544c96 Mon Sep 17 00:00:00 2001 From: Andreas Wicenec Date: Tue, 2 Apr 2024 13:44:40 +0800 Subject: [PATCH] Fixed log output --- daliuge-engine/dlg/named_port_utils.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/daliuge-engine/dlg/named_port_utils.py b/daliuge-engine/dlg/named_port_utils.py index c706263a8..4084d78bb 100644 --- a/daliuge-engine/dlg/named_port_utils.py +++ b/daliuge-engine/dlg/named_port_utils.py @@ -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 """ @@ -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"]]