Skip to content
Snippets Groups Projects

Operation Tree Traversing

Closed Jacob Wahlman requested to merge 11-operation-traversing into develop
4 files
+ 70
66
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 1
1
@@ -33,7 +33,7 @@ class Traverse:
@@ -33,7 +33,7 @@ class Traverse:
If the type is None then return the entire tree.
If the type is None then return the entire tree.
Keyword arguments:
Keyword arguments:
type_-- the operation type to search for (default None)
type_ -- the operation type to search for (default None)
"""
"""
operations: List[Operation] = self._breadth_first_search(self._initial_operation)
operations: List[Operation] = self._breadth_first_search(self._initial_operation)
Loading