mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[downloader/dash] Reorder imports
This commit is contained in:
parent
b9258c6178
commit
453a1617aa
1 changed files with 3 additions and 2 deletions
|
@ -1,9 +1,10 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
from .common import FileDownloader
|
|
||||||
from ..compat import compat_urllib_request
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
from .common import FileDownloader
|
||||||
|
from ..compat import compat_urllib_request
|
||||||
|
|
||||||
|
|
||||||
class DashSegmentsFD(FileDownloader):
|
class DashSegmentsFD(FileDownloader):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue