mirror of
https://github.com/beetbox/beets.git
synced 2025-12-30 04:22:40 +01:00
Fix pep8
This commit is contained in:
parent
7be7a78d5a
commit
a96f2fd3c9
1 changed files with 3 additions and 3 deletions
|
|
@ -697,7 +697,7 @@ class MultipleSort(Sort):
|
|||
|
||||
def __eq__(self, other):
|
||||
return super(MultipleSort, self).__eq__(other) and \
|
||||
self.sorts == other.sorts
|
||||
self.sorts == other.sorts
|
||||
|
||||
|
||||
class FieldSort(Sort):
|
||||
|
|
@ -727,8 +727,8 @@ class FieldSort(Sort):
|
|||
|
||||
def __eq__(self, other):
|
||||
return super(FieldSort, self).__eq__(other) and \
|
||||
self.field == other.field and \
|
||||
self.ascending == other.ascending
|
||||
self.field == other.field and \
|
||||
self.ascending == other.ascending
|
||||
|
||||
|
||||
class FixedFieldSort(FieldSort):
|
||||
|
|
|
|||
Loading…
Reference in a new issue