Add missing dunder method - __ne__ to the class GridFSProxy class
This commit is contained in:
parent
425fb8905b
commit
dc8a64fa7d
@ -1465,6 +1465,9 @@ class GridFSProxy(object):
|
|||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def __ne__(self, other):
|
||||||
|
return not self == other
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def fs(self):
|
def fs(self):
|
||||||
if not self._fs:
|
if not self._fs:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user