diff --git a/stig/utils/cliparser.py b/stig/utils/cliparser.py index 8ee13f25..dd861b83 100644 --- a/stig/utils/cliparser.py +++ b/stig/utils/cliparser.py @@ -105,9 +105,6 @@ def __eq__(self, other): else: return NotImplemented - def __ne__(self, other): - return not self.__eq__(other) - def __repr__(self): kwargs = {} if self._string: kwargs['string'] = self._string @@ -931,9 +928,6 @@ def __eq__(self, other): return NotImplemented return super().__eq__(other) and self.curpos == other.curpos - def __ne__(self, other): - return not self.__eq__(other) - def __hash__(self): return super().__hash__()