From b76f13229d8aa5a3206bfd90ca1c6aa52f3be97c Mon Sep 17 00:00:00 2001 From: mp107 Date: Mon, 17 Jun 2024 19:47:25 +0200 Subject: [PATCH] [elemental_tv] Use relative imports --- yt_dlp/extractor/elemental_tv.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yt_dlp/extractor/elemental_tv.py b/yt_dlp/extractor/elemental_tv.py index f4dee94f5..b79752389 100644 --- a/yt_dlp/extractor/elemental_tv.py +++ b/yt_dlp/extractor/elemental_tv.py @@ -2,9 +2,9 @@ import json import re import time -from yt_dlp.extractor.common import InfoExtractor -from yt_dlp.networking.exceptions import HTTPError -from yt_dlp.utils import ExtractorError +from ..extractor.common import InfoExtractor +from ..networking.exceptions import HTTPError +from ..utils import ExtractorError class ElementalTVIE(InfoExtractor):