diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-24 16:36:16 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-25 00:08:58 +0530 |
commit | 54007a45f11ed730352324289b714baefd2901eb (patch) | |
tree | bbaf83c77c3f81c5ca92d64a0679913fbcb365db /yt_dlp/extractor/common.py | |
parent | ac668111128b5f124b4271b3aa4c35f6e71a4749 (diff) | |
download | hypervideo-pre-54007a45f11ed730352324289b714baefd2901eb.tar.lz hypervideo-pre-54007a45f11ed730352324289b714baefd2901eb.tar.xz hypervideo-pre-54007a45f11ed730352324289b714baefd2901eb.zip |
[cleanup] Consistent style for file heads
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index 1c3d4af2c..4c37044f6 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -2,6 +2,9 @@ import base64 import collections import getpass import hashlib +import http.client +import http.cookiejar +import http.cookies import itertools import json import math @@ -12,9 +15,6 @@ import sys import time import urllib.request import xml.etree.ElementTree -import http.client -import http.cookiejar -import http.cookies from ..compat import functools, re # isort: split from ..compat import ( |