Skip to content

Commit

Permalink
Fix flake8 error
Browse files Browse the repository at this point in the history
add whitespace around operator
  • Loading branch information
pjanowski authored Dec 8, 2024
1 parent 73ccb56 commit 4f0dcbb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def parse_value(i: InputAssignment, nodes_outputs: dict, flow_inputs: dict):
def parse_node_property(node_name, node_val, property=""):
val = node_val
if "." in property and property in val.keys():
val= val[property]
val = val[property]
property_parts = re.findall(property_pattern, property)
try:
for part in property_parts:
Expand Down

0 comments on commit 4f0dcbb

Please sign in to comment.