aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/extractor/alura.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/alura.py')
-rw-r--r--yt_dlp/extractor/alura.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/yt_dlp/extractor/alura.py b/yt_dlp/extractor/alura.py
index b785c62c3..cb2b9891e 100644
--- a/yt_dlp/extractor/alura.py
+++ b/yt_dlp/extractor/alura.py
@@ -1,17 +1,13 @@
import re
from .common import InfoExtractor
-
-from ..compat import (
- compat_urlparse,
-)
-
+from ..compat import compat_urlparse
from ..utils import (
+ ExtractorError,
+ clean_html,
+ int_or_none,
urlencode_postdata,
urljoin,
- int_or_none,
- clean_html,
- ExtractorError
)