Skip to content

Commit 8c22b6d

Browse files
committed
super
1 parent e8295d4 commit 8c22b6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/compas/datastructures/tree/hashtree.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ class HashNode(TreeNode):
3535
3636
"""
3737

38-
def __init__(self, path, value=None):
39-
super().__init__()
38+
def __init__(self, path, value=None, **kwargs):
39+
super(HashNode, self).__init__(**kwargs)
4040
self.path = path
4141
self.value = value
4242
self._signature = None
@@ -141,7 +141,7 @@ class HashTree(Tree):
141141
"""
142142

143143
def __init__(self, **kwargs):
144-
super().__init__(**kwargs)
144+
super(HashTree, self).__init__(**kwargs)
145145
self.signatures = {}
146146

147147
@classmethod

0 commit comments

Comments
 (0)