From 9fbb79760760b73675d7c7e83d2f8fd3b41bb6a3 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 17 Nov 2012 00:52:57 +0100 Subject: [PATCH] core: flake8 1.5 style fix --- mopidy/core/actor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mopidy/core/actor.py b/mopidy/core/actor.py index fe7cf94b..231fe523 100644 --- a/mopidy/core/actor.py +++ b/mopidy/core/actor.py @@ -78,8 +78,8 @@ class Backends(list): # the X_by_uri_scheme dicts below. self.with_library = [b for b in backends if b.has_library().get()] self.with_playback = [b for b in backends if b.has_playback().get()] - self.with_playlists = [b for b in backends - if b.has_playlists().get()] + self.with_playlists = [ + b for b in backends if b.has_playlists().get()] self.by_uri_scheme = {} for backend in backends: