Removed redundant inequality method on Choices

This commit is contained in:
Tony Aldridge 2013-08-24 10:51:25 +01:00
parent cac7416cda
commit 1a6d9a193e

View file

@ -92,9 +92,6 @@ class Choices(object):
return self._full == other._full
return False
def __ne__(self, other):
return not self.__eq__(other)
def __repr__(self):
return '%s(%s)' % (self.__class__.__name__,
', '.join(("%s" % repr(i) for i in self._full)))