mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 02:26:53 -07:00
fix docstrings
This commit is contained in:
parent
d77b1eb704
commit
300fd91dcb
1 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ class Episode(Video):
|
|||
:param bool original_series: whether the series is the first with this name.
|
||||
:param int tvdb_id: TVDB id of the episode.
|
||||
:param list alternative_series: alternative names of the series
|
||||
:param \*\*kwargs: additional parameters for the :class:`Video` constructor.
|
||||
:param **kwargs: additional parameters for the :class:`Video` constructor.
|
||||
|
||||
"""
|
||||
def __init__(self, name, series, season, episodes, title=None, year=None, country=None, original_series=True,
|
||||
|
@ -218,7 +218,7 @@ class Movie(Video):
|
|||
:param country: Country of the movie.
|
||||
:type country: :class:`~babelfish.country.Country`
|
||||
:param list alternative_titles: alternative titles of the movie
|
||||
:param \*\*kwargs: additional parameters for the :class:`Video` constructor.
|
||||
:param **kwargs: additional parameters for the :class:`Video` constructor.
|
||||
|
||||
"""
|
||||
def __init__(self, name, title, year=None, country=None, alternative_titles=None, **kwargs):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue