Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 9b93aa7

Browse files
committed
Add missing type hints
1 parent fecdeed commit 9b93aa7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

twitter_video_tools/utils/youtube_dl_wrapper.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ class YoutubeDLWrapper: # pylint: disable=too-few-public-methods
1010

1111
def _youtube_dl_download_video(self, link: str, youtube_dl_option: Optional[dict[str, str]] = None) -> None:
1212
with youtube_dl.YoutubeDL(youtube_dl_option) as youtube_dl_downloader:
13+
youtube_dl_downloader: youtube_dl.YoutubeDL
1314
youtube_dl_downloader.download([link])
1415

1516
def download(self, links: list[str], youtube_dl_option: Optional[dict[str, str]] = None) -> None:

0 commit comments

Comments
 (0)