mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[cleanup] linter, code formatting and readme
This commit is contained in:
parent
74e001af1d
commit
07cce701de
6 changed files with 21 additions and 23 deletions
|
@ -1,2 +1,3 @@
|
|||
# flake8: noqa
|
||||
|
||||
from .sample import SamplePluginIE
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue