diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-09-22 01:37:44 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-09-22 02:15:55 +0530 |
commit | 2fa669f759eae6d5c7e608e3ee628f9d60d03e83 (patch) | |
tree | a994bb325804ed528c04208a928cd5830ee81126 /yt_dlp/extractor/niconico.py | |
parent | 8ca48a1a5427040fd708f33a264c10d5d0e85fc1 (diff) | |
download | hypervideo-pre-2fa669f759eae6d5c7e608e3ee628f9d60d03e83.tar.lz hypervideo-pre-2fa669f759eae6d5c7e608e3ee628f9d60d03e83.tar.xz hypervideo-pre-2fa669f759eae6d5c7e608e3ee628f9d60d03e83.zip |
[docs] Misc improvements
Closes #4987, Closes #4906, Closes #4919, Closes #4977, Closes #4979
Diffstat (limited to 'yt_dlp/extractor/niconico.py')
-rw-r--r-- | yt_dlp/extractor/niconico.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/extractor/niconico.py b/yt_dlp/extractor/niconico.py index 82fb27631..82b60b476 100644 --- a/yt_dlp/extractor/niconico.py +++ b/yt_dlp/extractor/niconico.py @@ -557,8 +557,7 @@ class NiconicoPlaylistBaseIE(InfoExtractor): } def _call_api(self, list_id, resource, query): - "Implement this in child class" - pass + raise NotImplementedError('Must be implemented in subclasses') @staticmethod def _parse_owner(item): |