Skip to content

Commit

Permalink
LIU-385: Make refactor clearer with function parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
myxie committed Aug 1, 2024
1 parent 137cc68 commit 4c14afd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion daliuge-translator/dlg/dropmake/dm_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,8 @@ def convert_construct(lgo):
"key": dup_app_node_k,
"fields": "appFields" if "appFields" in node else "inputAppFields"
}
tmp_node = _create_from_node(node, node[has_app], dup_app_args)
tmp_node = _create_from_node(node=node, category=node[has_app],
app_params=dup_app_args)
redundant_keys = ['fields', 'reprodata']
tmp_node = {k: v for k, v in tmp_node.items() if k not in redundant_keys}
duplicated_gather_app[k_new] = tmp_node
Expand Down

0 comments on commit 4c14afd

Please sign in to comment.