Skip to content

Commit

Permalink
Remove print statements from can_execute.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsorby committed Apr 22, 2024
1 parent ab24f31 commit ca84a0a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/mapclient/core/workflow/workflowdependencygraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,8 @@ def can_execute(self):
nodes = self._find_all_connected_nodes()
# Find starting point set, uses helper graph
starting_set = _find_starting_set(self._dependency_graph, nodes)
print("can execute")
print(self._dependency_graph)
print(starting_set)

self._topological_order = _determine_topological_order(self._dependency_graph, starting_set)
print(self._topological_order)

items_count = len(self._scene.items())
solo_node = self._solo_node()
Expand Down

0 comments on commit ca84a0a

Please sign in to comment.