Fix quotes
This commit is contained in:
@@ -22,9 +22,9 @@ class Youtube(BaseDownloader):
|
|||||||
|
|
||||||
def find_resources(self, authenticator: Optional[SiteAuthenticator] = None) -> list[Resource]:
|
def find_resources(self, authenticator: Optional[SiteAuthenticator] = None) -> list[Resource]:
|
||||||
ytdl_options = {
|
ytdl_options = {
|
||||||
"format": "best",
|
'format': 'best',
|
||||||
"playlistend": 1,
|
'playlistend': 1,
|
||||||
"nooverwrites": True,
|
'nooverwrites': True,
|
||||||
}
|
}
|
||||||
out = self._download_video(ytdl_options)
|
out = self._download_video(ytdl_options)
|
||||||
return [out]
|
return [out]
|
||||||
|
|||||||
Reference in New Issue
Block a user