diff options
Diffstat (limited to 'ytdlp_plugins/extractor/sample.py')
-rw-r--r-- | ytdlp_plugins/extractor/sample.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ytdlp_plugins/extractor/sample.py b/ytdlp_plugins/extractor/sample.py index 5d8df1df5..99a384140 100644 --- a/ytdlp_plugins/extractor/sample.py +++ b/ytdlp_plugins/extractor/sample.py @@ -1,11 +1,13 @@ +# coding: utf-8 + from __future__ import unicode_literals -# Don't use relative imports +# â Don't use relative imports from yt_dlp.extractor.common import InfoExtractor -# See https://github.com/ytdl-org/youtube-dl#adding-support-for-a-new-site -# for instuctions on making extractors +# âšī¸ Instructions on making extractors can be found at: +# đ https://github.com/ytdl-org/youtube-dl#adding-support-for-a-new-site class SamplePluginIE(InfoExtractor): _WORKING = False |