mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-10-04 12:15:02 -04:00
[cleanup] minor fixes
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
from ..utils import load_plugins
|
||||
|
||||
from .common import PostProcessor
|
||||
from .embedthumbnail import EmbedThumbnailPP
|
||||
from .exec import ExecPP, ExecAfterDownloadPP
|
||||
from .ffmpeg import (
|
||||
@@ -39,5 +40,5 @@ def get_postprocessor(key):
|
||||
return globals()[key + 'PP']
|
||||
|
||||
|
||||
__all__ = [name for name in globals().keys() if name.endswith('IE')]
|
||||
__all__.append('FFmpegPostProcessor')
|
||||
__all__ = [name for name in globals().keys() if name.endswith('PP')]
|
||||
__all__.extend(('PostProcessor', 'FFmpegPostProcessor'))
|
||||
|
Reference in New Issue
Block a user