This commit is contained in:
Jesse Bannon 2023-03-12 23:01:30 -07:00
parent 262a064d71
commit b318bc737f

View file

@ -5,7 +5,8 @@ import os
import shutil import shutil
from abc import ABC from abc import ABC
from pathlib import Path from pathlib import Path
from typing import Iterable, Dict from typing import Dict
from typing import Iterable
from typing import List from typing import List
from typing import Optional from typing import Optional
from typing import Set from typing import Set
@ -22,8 +23,8 @@ from ytdl_sub.utils.file_handler import FileHandlerTransactionLog
from ytdl_sub.utils.file_handler import FileMetadata from ytdl_sub.utils.file_handler import FileMetadata
from ytdl_sub.utils.file_handler import get_file_extension from ytdl_sub.utils.file_handler import get_file_extension
from ytdl_sub.utils.thumbnail import convert_download_thumbnail from ytdl_sub.utils.thumbnail import convert_download_thumbnail
from ytdl_sub.ytdl_additions.enhanced_download_archive import EnhancedDownloadArchive, \ from ytdl_sub.ytdl_additions.enhanced_download_archive import DownloadMappings
DownloadMappings from ytdl_sub.ytdl_additions.enhanced_download_archive import EnhancedDownloadArchive
def _get_split_plugin(plugins: List[Plugin]) -> Optional[Plugin]: def _get_split_plugin(plugins: List[Plugin]) -> Optional[Plugin]:
@ -405,6 +406,8 @@ class SubscriptionDownload(BaseSubscription, ABC):
return self._process_subscription( return self._process_subscription(
plugins=plugins, plugins=plugins,
entries=self._get_entries_for_reformat(download_mappings=download_mappings, dry_run=dry_run), entries=self._get_entries_for_reformat(
download_mappings=download_mappings, dry_run=dry_run
),
dry_run=dry_run, dry_run=dry_run,
) )