mirror of
https://github.com/beetbox/beets.git
synced 2025-12-20 15:43:58 +01:00
Corrected some flake8 errors
This commit is contained in:
parent
92c118f4a8
commit
527d0a88f4
1 changed files with 1 additions and 1 deletions
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue