Replace os.path with pathlib
This commit is contained in:
parent
cd22b5f694
commit
a7fdc9f436
1 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
import os
|
import pathlib
|
||||||
|
|
||||||
from mopidy import config, ext
|
from mopidy import config, ext
|
||||||
|
|
||||||
|
@ -12,8 +12,7 @@ class SubidyExtension(ext.Extension):
|
||||||
version = __version__
|
version = __version__
|
||||||
|
|
||||||
def get_default_config(self):
|
def get_default_config(self):
|
||||||
conf_file = os.path.join(os.path.dirname(__file__), "ext.conf")
|
return config.read(pathlib.Path(__file__).parent / "ext.conf")
|
||||||
return config.read(conf_file)
|
|
||||||
|
|
||||||
def get_config_schema(self):
|
def get_config_schema(self):
|
||||||
schema = super().get_config_schema()
|
schema = super().get_config_schema()
|
||||||
|
|
Loading…
Add table
Reference in a new issue