Use lshift for tree combination

master
Jan Petykiewicz 1 year ago committed by jan
parent 103eb4f1f8
commit f642c226c7

@ -1025,7 +1025,7 @@ class Tree(MutableLibrary):
def __delitem__(self, key: str) -> None:
del self.library[key]
def __iadd__(self, other: 'Tree') -> None:
def __lshift__(self, other: 'Tree') -> None:
self.add_tree(other)

Loading…
Cancel
Save