Fix flake8 warnings

This commit is contained in:
Stein Magnus Jodal 2013-01-02 22:25:32 +01:00
parent f4251e63fa
commit af6ee16b3a
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ def supported_uri_schemes(uri_schemes):
:type uri_schemes: list or set or URI schemes as strings.
:rtype: set of URI schemes we can support via this GStreamer install.
"""
supported_schemes= set()
supported_schemes = set()
registry = gst.registry_get_default()
for factory in registry.get_feature_list(gst.TYPE_ELEMENT_FACTORY):

View File

@ -8,7 +8,7 @@ import pykka
from mopidy import settings
from mopidy.audio import utils
from mopidy.backends import base
from mopidy.models import SearchResult, Track
from mopidy.models import Track
logger = logging.getLogger('mopidy.backends.stream')