aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/cbsnews.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/cbsnews.py')
-rw-r--r--yt_dlp/extractor/cbsnews.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/cbsnews.py b/yt_dlp/extractor/cbsnews.py
index 76925b4f9..98ec28df0 100644
--- a/yt_dlp/extractor/cbsnews.py
+++ b/yt_dlp/extractor/cbsnews.py
@@ -12,7 +12,7 @@ from ..utils import (
)
-class CBSNewsEmbedIE(CBSIE):
+class CBSNewsEmbedIE(CBSIE): # XXX: Do not subclass from concrete IE
IE_NAME = 'cbsnews:embed'
_VALID_URL = r'https?://(?:www\.)?cbsnews\.com/embed/video[^#]*#(?P<id>.+)'
_TESTS = [{
@@ -27,7 +27,7 @@ class CBSNewsEmbedIE(CBSIE):
return self._extract_video_info(item['mpxRefId'], 'cbsnews')
-class CBSNewsIE(CBSIE):
+class CBSNewsIE(CBSIE): # XXX: Do not subclass from concrete IE
IE_NAME = 'cbsnews'
IE_DESC = 'CBS News'
_VALID_URL = r'https?://(?:www\.)?cbsnews\.com/(?:news|video)/(?P<id>[\da-z_-]+)'