fix isinstance call arg order
This commit is contained in:
parent
3415a16cd1
commit
c4ff53a0ba
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue