diff --git a/libs/common/subliminal/video.py b/libs/common/subliminal/video.py index e5e04e4f..b0629767 100644 --- a/libs/common/subliminal/video.py +++ b/libs/common/subliminal/video.py @@ -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):