diff --git a/jedi/common/value.py b/jedi/common/value.py index 3a0e1fc8..815966b1 100644 --- a/jedi/common/value.py +++ b/jedi/common/value.py @@ -69,5 +69,8 @@ class BaseValueSet(object): def __eq__(self, other): return self._set == other._set + def __ne__(self, other): + return not self.__eq__(other) + def __hash__(self): return hash(self._set)