1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-03-09 12:50:23 -05:00

Fixed Ruff errors: sort imports and replace double quotes

This commit is contained in:
thedenv 2025-03-05 03:04:34 +00:00
parent d26c957731
commit aa9074729d

View file

@ -10,7 +10,6 @@
url_or_none, url_or_none,
) )
class MSNIE(InfoExtractor): class MSNIE(InfoExtractor):
_WORKING = True _WORKING = True
_VALID_URL = r'https?://(?:(?:www|preview)\.)?msn\.com/(?:[^/]+/)+(?P<display_id>[^/]+)/[a-z]{2}-(?P<id>[\da-zA-Z]+)' _VALID_URL = r'https?://(?:(?:www|preview)\.)?msn\.com/(?:[^/]+/)+(?P<display_id>[^/]+)/[a-z]{2}-(?P<id>[\da-zA-Z]+)'
@ -63,7 +62,7 @@ class MSNIE(InfoExtractor):
'info_dict': { 'info_dict': {
'id': 'AA1A6v68', 'id': 'AA1A6v68',
'display_id': 'gene-hackman-s-unseen-legacy-a-humble-artist-a-community-man-a-hollywood-icon', 'display_id': 'gene-hackman-s-unseen-legacy-a-humble-artist-a-community-man-a-hollywood-icon',
'title': "Gene Hackmans unseen legacy: a humble artist, a community man, a Hollywood icon", 'title': 'Gene Hackmans unseen legacy: a humble artist, a community man, a Hollywood icon',
'ext': 'mp4', 'ext': 'mp4',
}, },
}, { }, {