fix isinstance call arg order
This commit is contained in:
parent
3415a16cd1
commit
c4ff53a0ba
@ -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…
Reference in New Issue
Block a user