Skip to content

Commit 527d0a8

Browse files
committed
Corrected some flake8 errors
1 parent 92c118f commit 527d0a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beets/dbcore/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def __repr__(self):
130130

131131
def __eq__(self, other):
132132
return super(FieldQuery, self).__eq__(other) and \
133-
self.field == other.field and self.pattern == other.pattern
133+
self.field == other.field and self.pattern == other.pattern
134134

135135
def __hash__(self):
136136
return hash((self.field, hash(self.pattern)))

0 commit comments

Comments
 (0)