From a96f2fd3c940366b6d5c0f722bc9ecea3689f6dc Mon Sep 17 00:00:00 2001 From: Bruno Cauet Date: Thu, 19 Mar 2015 13:51:20 +0100 Subject: [PATCH] Fix pep8 --- beets/dbcore/query.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/beets/dbcore/query.py b/beets/dbcore/query.py index 965c13868..330913706 100644 --- a/beets/dbcore/query.py +++ b/beets/dbcore/query.py @@ -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):