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

This commit is contained in:
lanf0n
2017-01-05 22:37:09 -05:00
committed by Stefan Wójcik
parent ebd34427c7
commit 193aa4e1f2
+1 -1
View File
@@ -429,7 +429,7 @@ class StrictDict(object):
def __eq__(self, other):
return self.items() == other.items()
def __neq__(self, other):
def __ne__(self, other):
return self.items() != other.items()
@classmethod