diff options
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wee_slack.py b/wee_slack.py index 5f7d5cb..a916ab8 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -2895,6 +2895,9 @@ class SlackTS(object): def __eq__(self, other): return self.__cmp__(other) == 0 + def __ne__(self, other): + return self.__cmp__(other) != 0 + def __ge__(self, other): return self.__cmp__(other) >= 0 |