Fixed doc warnings

This commit is contained in:
Fabio Manganiello 2022-09-17 06:25:28 +02:00
parent 1b405de0d5
commit a9ebb4805a
Signed by untrusted user: blacklight
GPG Key ID: D90FBA7F76362774
3 changed files with 2 additions and 3 deletions

View File

@ -154,7 +154,7 @@ class DbPlugin(Plugin):
``sqlalchemy.create_engine`` (see
https://docs.sqlalchemy.org/en/latest/core/engines.html)
:param kwargs: Extra kwargs that will be passed to
``sqlalchemy.create_engine`` (see
``sqlalchemy.create_engine`` (see
https:///docs.sqlalchemy.org/en/latest/core/engines.html)
:returns: List of hashes representing the result rows.

View File

@ -55,7 +55,7 @@ class MusicTidalPlugin(RunnablePlugin):
:param quality: Default audio quality. Default: ``high``.
Supported: [``loseless``, ``master``, ``high``, ``low``].
:param credentials_file: Path to the file where the OAuth session
parameters will be stored (default:
parameters will be stored (default:
``<WORKDIR>/tidal/credentials.json``).
"""
from tidalapi import Quality

View File

@ -27,7 +27,6 @@ class TidalArtistSchema(TidalSchema):
)
name = fields.String(required=True)
albums = fields.Nested("TidalAlbumSchema", many=True)
@pre_dump
def _prefill_url(self, data, *_, **__):