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 linting errors in msn.py

This commit is contained in:
thedenv 2025-03-05 03:26:04 +00:00
parent aa9074729d
commit 94660f3981

View file

@ -3,13 +3,14 @@
from .common import InfoExtractor
from ..utils import (
determine_ext,
ExtractorError,
determine_ext,
int_or_none,
traverse_obj,
url_or_none,
)
class MSNIE(InfoExtractor):
_WORKING = True
_VALID_URL = r'https?://(?:(?:www|preview)\.)?msn\.com/(?:[^/]+/)+(?P<display_id>[^/]+)/[a-z]{2}-(?P<id>[\da-zA-Z]+)'