1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-17 22:55:42 +07:00

[utils,compat] Move struct_pack and struct_unpack to compat.py

This commit is contained in:
Yen Chi Hsuan
2016-04-23 18:28:49 +08:00
parent 4350b74545
commit dab0daeeb0
7 changed files with 38 additions and 28 deletions

View File

@@ -6,6 +6,9 @@
import time
from .common import InfoExtractor
from ..compat import (
struct_unpack,
)
from ..utils import (
ExtractorError,
float_or_none,
@@ -13,7 +16,6 @@
remove_start,
sanitized_Request,
std_headers,
struct_unpack,
)