From f642c226c7d256e8e0c92f6b6b770c650f46d7b9 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Tue, 31 Jan 2023 15:31:22 -0800 Subject: [PATCH] Use lshift for tree combination --- masque/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/library.py b/masque/library.py index 1bb5e90..f25c032 100644 --- a/masque/library.py +++ b/masque/library.py @@ -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)