1
0
Fork 0

[cookies] Move YoutubeDLCookieJar to cookies module (#7091)

Authored by: coletdjnz
This commit is contained in:
coletdjnz 2023-05-27 19:08:19 +12:00 committed by GitHub
commit b87e01c123
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 157 additions and 137 deletions

View file

@ -10,6 +10,9 @@ from ._utils import decode_base_n, preferredencoding
from .traversal import traverse_obj
from ..dependencies import certifi, websockets
# isort: split
from ..cookies import YoutubeDLCookieJar # noqa: F401
has_certifi = bool(certifi)
has_websockets = bool(websockets)