From 300fd91dcb1c0083f9924a48c0b08644f5087da2 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Fri, 1 Mar 2024 15:20:52 +1300 Subject: [PATCH] fix docstrings --- libs/common/subliminal/video.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):