Skip to content

Commit 447a1cd

Browse files
committed
code quality
1 parent 3200acd commit 447a1cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pydatastructs/trees/_backend/cpp/SelfBalancingBinaryTree.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,4 @@ static PyTypeObject SelfBalancingBinaryTreeType = {
171171
/* tp_new */ SelfBalancingBinaryTree___new__,
172172
};
173173

174-
#endif
174+
#endif

pydatastructs/trees/binary_trees.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ def __new__(cls, key=None, root_data=None, comp=None,
692692
comp = lambda key1, key2: key1 < key2
693693
return _trees.SelfBalancingBinaryTree(key, root_data, comp, is_order_statistic, **kwargs) # If any argument is not given, then it is passed as None, except for comp
694694
return super().__new__(cls, key, root_data, comp, is_order_statistic, **kwargs)
695-
695+
696696
def _right_rotate(self, j, k):
697697
y = self.tree[k].right
698698
if y is not None:

0 commit comments

Comments
 (0)