projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f8ff3f
)
Remove Status.__ne__ and User.__ne__
author
Harmon
<Harmon758@gmail.com>
Wed, 30 Dec 2020 04:29:38 +0000
(22:29 -0600)
committer
Harmon
<Harmon758@gmail.com>
Wed, 30 Dec 2020 04:30:11 +0000
(22:30 -0600)
tweepy/models.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/models.py
b/tweepy/models.py
index f330a7f093dafa5f7e9952267ff55f0fe3d1c4f1..476eb062d96a24eefd11100ea57396513fb84b47 100644
(file)
--- a/
tweepy/models.py
+++ b/
tweepy/models.py
@@
-134,14
+134,6
@@
class Status(Model):
return NotImplemented
- def __ne__(self, other):
- result = self == other
-
- if result is NotImplemented:
- return result
-
- return not result
-
class User(Model):
@@
-219,14
+211,6
@@
class User(Model):
return NotImplemented
- def __ne__(self, other):
- result = self == other
-
- if result is NotImplemented:
- return result
-
- return not result
-
class DirectMessage(Model):