Update parents.py
This commit is contained in:
parent
a95c83b01c
commit
9eb7b66882
@ -25,7 +25,7 @@ class DatabaseObject:
|
||||
self.dynamic = dynamic
|
||||
|
||||
def merge(self, other, override: bool = False):
|
||||
if type(other) != type(self):
|
||||
if isinstance(other, type(self)):
|
||||
LOGGER.warning(f"can't merge \"{type(other)}\" into \"{type(self)}\"")
|
||||
return
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user