You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
149 connected_nodes = edge.get_connected_nodes()
150 if not connected_nodes:
--> 151 raise ValueError(
152 f"Edge nr. {edge_id} is not connected to any node ({edge})"
153 )
ValueError: Edge nr. 1 is not connected to any node (Edge(ending_node_id=None, originating_node_id=None))
If I understand correctly, the above snippet should handle a 2-to-3 transition that should look like this:
There seems to be a bug in the
SimpleStateTransitionTopologyBuilder
: it doesn't correctly handle a list ofInteractionNode
s:If I understand correctly, the above snippet should handle a 2-to-3 transition that should look like this:
Code to create the figure
The text was updated successfully, but these errors were encountered: