diff --git a/yt_dlp/extractor/thehighwire.py b/yt_dlp/extractor/thehighwire.py index d1346a894..8575b0c23 100644 --- a/yt_dlp/extractor/thehighwire.py +++ b/yt_dlp/extractor/thehighwire.py @@ -1,4 +1,15 @@ from .common import InfoExtractor +from ..utils import ( + clean_html, + extract_attributes, + url_or_none, +) +from ..utils.traversal import ( + find_element, + require, + traverse_obj, +) + class TheHighWireIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?thehighwire\.com/ark-videos/(?P[^/?#]+)'