Add missing dunder method - __ne__ to the class GridFSProxy class

This commit is contained in:
Srinivas Reddy Thatiparthy 2017-08-25 22:02:47 +05:30
parent 425fb8905b
commit dc8a64fa7d

View File

@ -1465,6 +1465,9 @@ class GridFSProxy(object):
else:
return False
def __ne__(self, other):
return not self == other
@property
def fs(self):
if not self._fs: