diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-11-16 06:27:43 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-11-16 06:57:07 +0530 |
commit | 6368e2e639bca7e66609911d2672b6a9dc65b052 (patch) | |
tree | ad1f2fb77baf1213e245511f6edfc6072ab606c5 /yt_dlp/extractor/uplynk.py | |
parent | a4894d3e25943c4ecf4f38c0d50ce592d2175f29 (diff) | |
download | hypervideo-pre-6368e2e639bca7e66609911d2672b6a9dc65b052.tar.lz hypervideo-pre-6368e2e639bca7e66609911d2672b6a9dc65b052.tar.xz hypervideo-pre-6368e2e639bca7e66609911d2672b6a9dc65b052.zip |
[cleanup] Misc
Closes #5541
Diffstat (limited to 'yt_dlp/extractor/uplynk.py')
-rw-r--r-- | yt_dlp/extractor/uplynk.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/extractor/uplynk.py b/yt_dlp/extractor/uplynk.py index 04c96f388..9b560f719 100644 --- a/yt_dlp/extractor/uplynk.py +++ b/yt_dlp/extractor/uplynk.py @@ -52,10 +52,9 @@ class UplynkIE(InfoExtractor): return self._extract_uplynk_info(url) -class UplynkPreplayIE(UplynkIE): +class UplynkPreplayIE(UplynkIE): # XXX: Do not subclass from concrete IE IE_NAME = 'uplynk:preplay' _VALID_URL = r'https?://.*?\.uplynk\.com/preplay2?/(?P<path>ext/[0-9a-f]{32}/(?P<external_id>[^/?&]+)|(?P<id>[0-9a-f]{32}))\.json' - _TEST = None def _real_extract(self, url): path, external_id, video_id = self._match_valid_url(url).groups() |