Skip to content

Commit

Permalink
code quality
Browse files Browse the repository at this point in the history
  • Loading branch information
Kishan-Ved committed Jun 19, 2024
1 parent 14a3701 commit 23ce3e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydatastructs/trees/binary_trees.py
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ def __new__(cls, key=None, root_data=None, comp=None,

@classmethod
def methods(cls):
return ['__new__','insert', 'delete', 'join', 'split']
return ['__new__', 'insert', 'delete', 'join', 'split']

def _zig(self, x, p):
if self.tree[p].left == x:
Expand Down

0 comments on commit 23ce3e0

Please sign in to comment.