Fix bug introduced in pylint tidy up
This commit is contained in:
parent
27e79a3e76
commit
c9b5830a37
@ -113,7 +113,7 @@ class Person(CitationBase, NoteBase, AttributeBase, MediaBase,
|
||||
return isinstance(other, Person) and self.handle == other.handle
|
||||
|
||||
def __ne__(self, other):
|
||||
return self != other
|
||||
return not self == other
|
||||
|
||||
def serialize(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user