fix isinstance call arg order

lethe/LATEST
Jan Petykiewicz 9 months ago
parent aac8522d18
commit 78f95e31c8

@ -609,7 +609,7 @@ class ILibrary(ILibraryView, MutableMapping[str, 'Pattern'], metaclass=ABCMeta):
return {} return {}
if mutate_other: if mutate_other:
if isinstance(Library, other): if isinstance(other, Library):
temp = other temp = other
else: else:
temp = Library(dict(other)) temp = Library(dict(other))

Loading…
Cancel
Save