chore: remove unwanted code

This commit is contained in:
ruthra kumar 2023-09-25 22:01:07 +05:30
parent 705ef4f5a3
commit de2eba0d98

View File

@ -66,7 +66,6 @@ class BTree(object):
cur_node = root_node
period_list = deque([root_node])
periods = []
while period_list:
cur_node = period_list.popleft()
cur_node_index = len(self.btree) - 1
@ -97,7 +96,6 @@ class BTree(object):
cur_node = root_node
period_list = [root_node]
periods = []
while period_list:
cur_node = period_list.pop()
cur_node_index = len(self.btree) - 1