fix add_tree operator
This commit is contained in:
parent
81171e9b02
commit
83c710a85f
@ -1031,8 +1031,8 @@ class Tree(MutableLibrary):
|
||||
def __delitem__(self, key: str) -> None:
|
||||
del self.library[key]
|
||||
|
||||
def __lshift__(self, other: 'Tree') -> None:
|
||||
self.add_tree(other)
|
||||
def __lshift__(self, other: 'Tree') -> str:
|
||||
return self.add_tree(other)
|
||||
|
||||
|
||||
def _rename_patterns(lib: Library, name: str) -> str:
|
||||
|
Loading…
Reference in New Issue
Block a user