[#1459] fix typo __neq__ to __ne__ (#1461)

This commit is contained in:
lanf0n 2017-01-06 11:37:09 +08:00 committed by Stefan Wójcik
parent ebd34427c7
commit 193aa4e1f2

View File

@ -429,7 +429,7 @@ class StrictDict(object):
def __eq__(self, other): def __eq__(self, other):
return self.items() == other.items() return self.items() == other.items()
def __neq__(self, other): def __ne__(self, other):
return self.items() != other.items() return self.items() != other.items()
@classmethod @classmethod