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/cookies.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/cookies.py')
-rw-r--r-- | yt_dlp/cookies.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/cookies.py b/yt_dlp/cookies.py index 6811a7288..e2ff8c39f 100644 --- a/yt_dlp/cookies.py +++ b/yt_dlp/cookies.py @@ -1,5 +1,6 @@ import contextlib import ctypes +import http.cookiejar import json import os import shutil @@ -11,7 +12,6 @@ import time from datetime import datetime, timedelta, timezone from enum import Enum, auto from hashlib import pbkdf2_hmac -import http.cookiejar from .aes import ( aes_cbc_decrypt_bytes, |