Corrected some flake8 errors

This commit is contained in:
euri10 2017-06-15 09:31:41 +02:00
parent 92c118f4a8
commit 527d0a88f4

View file

@ -130,7 +130,7 @@ class FieldQuery(Query):
def __eq__(self, other):
return super(FieldQuery, self).__eq__(other) and \
self.field == other.field and self.pattern == other.pattern
self.field == other.field and self.pattern == other.pattern
def __hash__(self):
return hash((self.field, hash(self.pattern)))