From c4ff53a0ba001b4aab75d291d6f2209e6e513b60 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sat, 7 Oct 2023 01:52:53 -0700 Subject: [PATCH] fix isinstance call arg order --- masque/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/library.py b/masque/library.py index c662b3a..3ed4f0b 100644 --- a/masque/library.py +++ b/masque/library.py @@ -609,7 +609,7 @@ class ILibrary(ILibraryView, MutableMapping[str, 'Pattern'], metaclass=ABCMeta): return {} if mutate_other: - if isinstance(Library, other): + if isinstance(other, Library): temp = other else: temp = Library(dict(other))