Skip to content

Commit

Permalink
Fixed minor naming bug and removed redundant line
Browse files Browse the repository at this point in the history
  • Loading branch information
james-strauss-uwa committed Mar 1, 2022
1 parent 23b4d17 commit d5ff1e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/xml2palette/xml2palette.py
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,6 @@ def create_construct_node(type, node):
)

construct_node = {
"applicationArgs": [],
"category": type,
"description": "A default " + type + " construct for the " + node["text"] + " component.",
"fields": [],
Expand All @@ -845,7 +844,7 @@ def create_construct_node(type, node):
"precious": False,
"sha": version,
"streaming": False,
"text": "Scatter" + "/" + node["text"]
"text": type + "/" + node["text"]
}

if type == "Scatter" or type == "Gather":
Expand Down

0 comments on commit d5ff1e1

Please sign in to comment.