Skip to content

Commit

Permalink
super
Browse files Browse the repository at this point in the history
  • Loading branch information
Licini committed May 13, 2024
1 parent e8295d4 commit 8c22b6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/compas/datastructures/tree/hashtree.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ class HashNode(TreeNode):
"""

def __init__(self, path, value=None):
super().__init__()
def __init__(self, path, value=None, **kwargs):
super(HashNode, self).__init__(**kwargs)
self.path = path
self.value = value
self._signature = None
Expand Down Expand Up @@ -141,7 +141,7 @@ class HashTree(Tree):
"""

def __init__(self, **kwargs):
super().__init__(**kwargs)
super(HashTree, self).__init__(**kwargs)
self.signatures = {}

@classmethod
Expand Down

0 comments on commit 8c22b6d

Please sign in to comment.