1
0
Fork 0
mirror of synced 2024-06-26 18:10:26 +12:00

Fix quotes

This commit is contained in:
Serene-Arc 2021-04-05 15:57:21 +10:00 committed by Ali Parlakci
parent b5b163084f
commit 9880d46853

View file

@ -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]