diff --git a/bulkredditdownloader/site_downloaders/youtube.py b/bulkredditdownloader/site_downloaders/youtube.py index c1db496..e8cd696 100644 --- a/bulkredditdownloader/site_downloaders/youtube.py +++ b/bulkredditdownloader/site_downloaders/youtube.py @@ -22,9 +22,9 @@ class Youtube(BaseDownloader): def find_resources(self, authenticator: Optional[SiteAuthenticator] = None) -> list[Resource]: ytdl_options = { - "format": "best", - "playlistend": 1, - "nooverwrites": True, + 'format': 'best', + 'playlistend': 1, + 'nooverwrites': True, } out = self._download_video(ytdl_options) return [out]