Skip to content

Commit

Permalink
FlowParser: minor fix where wrong error was raised
Browse files Browse the repository at this point in the history
  • Loading branch information
geoo89 committed Feb 2, 2023
1 parent 19309da commit a5195a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsers/creation/flowparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def connect_loose_exits(self, destination_uuid):
for edge in self.parent_edges:
edge.source_node_group.connect_loose_exits(destination_uuid)

def entry_node():
def entry_node(self):
raise NotImplementedError("go_to not implemented to link to no_op row.")

def add_parent_edge(self, source_node_group, condition):
Expand Down

0 comments on commit a5195a2

Please sign in to comment.