From 8c22b6db4fdad775319e1733cd9ba5214e915aba Mon Sep 17 00:00:00 2001 From: Li Date: Mon, 13 May 2024 12:40:42 +0200 Subject: [PATCH] super --- src/compas/datastructures/tree/hashtree.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compas/datastructures/tree/hashtree.py b/src/compas/datastructures/tree/hashtree.py index e20ef4126d7..47e31bd0680 100644 --- a/src/compas/datastructures/tree/hashtree.py +++ b/src/compas/datastructures/tree/hashtree.py @@ -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 @@ -141,7 +141,7 @@ class HashTree(Tree): """ def __init__(self, **kwargs): - super().__init__(**kwargs) + super(HashTree, self).__init__(**kwargs) self.signatures = {} @classmethod