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.
This commit is contained in:
Pete Johns 2020-04-13 13:35:27 +10:00
parent 685ed27a4f
commit a6376446ec
No known key found for this signature in database
GPG Key ID: F05BBF16907F7671

View File

@ -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<id>[0-9a-z-]+)'
_TESTS = [{