mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-04-18 10:20:59 +00:00
Removed redundant inequality method on Choices
This commit is contained in:
parent
cac7416cda
commit
1a6d9a193e
1 changed files with 0 additions and 3 deletions
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue