Format with Black

This commit is contained in:
Stein Magnus Jodal 2020-03-08 12:30:34 +01:00
parent b067352a00
commit 1b04266d92
7 changed files with 466 additions and 207 deletions

View file

@ -2,28 +2,29 @@ import os
from mopidy import ext, config
__version__ = '0.2.1'
__version__ = "0.2.1"
class SubidyExtension(ext.Extension):
dist_name = 'Mopidy-Subidy'
ext_name = 'subidy'
dist_name = "Mopidy-Subidy"
ext_name = "subidy"
version = __version__
def get_default_config(self):
conf_file = os.path.join(os.path.dirname(__file__), 'ext.conf')
conf_file = os.path.join(os.path.dirname(__file__), "ext.conf")
return config.read(conf_file)
def get_config_schema(self):
schema = super().get_config_schema()
schema['url'] = config.String()
schema['username'] = config.String()
schema['password'] = config.Secret()
schema['legacy_auth'] = config.Boolean(optional=True)
schema['api_version'] = config.String(optional=True)
schema["url"] = config.String()
schema["username"] = config.String()
schema["password"] = config.Secret()
schema["legacy_auth"] = config.Boolean(optional=True)
schema["api_version"] = config.String(optional=True)
return schema
def setup(self, registry):
from .backend import SubidyBackend
registry.add('backend', SubidyBackend)
registry.add("backend", SubidyBackend)