Skip to content

Commit

Permalink
Make Node name mandatory
Browse files Browse the repository at this point in the history
  • Loading branch information
kayjan authored Jan 22, 2025
1 parent 7c06fb4 commit 9ed7993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigtree/node/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Node(basenode.BaseNode):
"""

def __init__(self, name: str = "", sep: str = "/", **kwargs: Any):
def __init__(self, name: str, sep: str = "/", **kwargs: Any):
self.name = name
self._sep = sep
super().__init__(**kwargs)
Expand Down

0 comments on commit 9ed7993

Please sign in to comment.