diff options
| -rw-r--r-- | assignment1.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/assignment1.py b/assignment1.py index a65c601..67e3c87 100644 --- a/assignment1.py +++ b/assignment1.py @@ -43,12 +43,14 @@ class Tree(): """ @todo: Docstring for drop_left """ + # Need to change self.d_structure = self.d_structure["left"] def drop_right(self) -> dict: """ @todo: Docstring for drop_right """ + # Need to change self.d_structure = self.d_structure["right"] |
