From a6376446ec7b181ed676427a66523ce925c6ec46 Mon Sep 17 00:00:00 2001 From: Pete Johns Date: Mon, 13 Apr 2020 13:35:27 +1000 Subject: [PATCH] Don't inherit from SBSIE It's unclear from https://github.com/ytdl-org/youtube-dl/pull/21066#discussion_r407193002 why this is the case as the codebase has many examples of other InfoExtractor classes inheriting from derived classes. --- youtube_dl/extractor/sbs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/sbs.py b/youtube_dl/extractor/sbs.py index 2fc56e0f9..d9ad9d16e 100644 --- a/youtube_dl/extractor/sbs.py +++ b/youtube_dl/extractor/sbs.py @@ -69,7 +69,7 @@ class SBSIE(InfoExtractor): return self._match_id(url) -class SBSNewsIE(SBSIE): +class SBSNewsIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?sbs\.com\.au/news/(?P[0-9a-z-]+)' _TESTS = [{