mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-07 15:25:12 +01:00
[cleanup] Sort imports
Using https://github.com/PyCQA/isort isort -m VERTICAL_HANGING_INDENT --py 36 -l 80 --rr -n --tc .
This commit is contained in:
parent
86e5f3ed2e
commit
f82711587c
86 changed files with 556 additions and 671 deletions
|
|
@ -3,17 +3,9 @@ import heapq
|
|||
import os
|
||||
|
||||
from .common import PostProcessor
|
||||
from .ffmpeg import (
|
||||
FFmpegPostProcessor,
|
||||
FFmpegSubtitlesConvertorPP
|
||||
)
|
||||
from .ffmpeg import FFmpegPostProcessor, FFmpegSubtitlesConvertorPP
|
||||
from .sponsorblock import SponsorBlockPP
|
||||
from ..utils import (
|
||||
orderedSet,
|
||||
PostProcessingError,
|
||||
prepend_extension,
|
||||
)
|
||||
|
||||
from ..utils import PostProcessingError, orderedSet, prepend_extension
|
||||
|
||||
_TINY_CHAPTER_DURATION = 1
|
||||
DEFAULT_SPONSORBLOCK_CHAPTER_TITLE = '[SponsorBlock]: %(category_names)l'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue