From 2a308d09308b3f24677e1cae92d0c6c6533f65ff Mon Sep 17 00:00:00 2001 From: McSwindler Date: Wed, 24 Apr 2024 22:12:55 -0500 Subject: [PATCH] [watchertv] add comments for required fields Co-authored-by: pukkandan --- yt_dlp/extractor/dropout.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yt_dlp/extractor/dropout.py b/yt_dlp/extractor/dropout.py index 6af8148d3..65e4150bc 100644 --- a/yt_dlp/extractor/dropout.py +++ b/yt_dlp/extractor/dropout.py @@ -18,7 +18,7 @@ class DropoutBaseIE(InfoExtractor): - _HOST = None + """Subclasses must define _HOST""" def _get_authenticity_token(self, display_id): signin_page = self._download_webpage( @@ -170,6 +170,7 @@ class DropoutIE(DropoutBaseIE): class DropoutSeasonBaseIE(InfoExtractor): + """Subclasses must define _VIDEO_IE""" _PAGE_SIZE = 24 def _fetch_page(self, url, season_id, page):