fix isinstance call arg order

This commit is contained in:
Jan Petykiewicz 2023-10-07 01:52:53 -07:00
parent aac8522d18
commit 78f95e31c8

View File

@ -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))