mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[sohu] Correct wrong imports
This commit is contained in:
parent
5ee6fc974e
commit
5c7495a194
1 changed files with 4 additions and 2 deletions
|
@ -4,8 +4,10 @@
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import compat_str
|
from ..compat import (
|
||||||
from ..compat import compat_urllib_request
|
compat_str,
|
||||||
|
compat_urllib_request
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class SohuIE(InfoExtractor):
|
class SohuIE(InfoExtractor):
|
||||||
|
|
Loading…
Reference in a new issue