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 /test/test_youtube_signature.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 'test/test_youtube_signature.py')
-rw-r--r-- | test/test_youtube_signature.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/test_youtube_signature.py b/test/test_youtube_signature.py index 2c2013295..56304772b 100644 --- a/test/test_youtube_signature.py +++ b/test/test_youtube_signature.py @@ -1,17 +1,19 @@ #!/usr/bin/env python3 + # Allow direct execution -import contextlib import os import sys import unittest sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + +import contextlib import re import string import urllib.request -from test.helper import FakeYDL, is_download_test +from test.helper import FakeYDL, is_download_test from yt_dlp.compat import compat_str from yt_dlp.extractor import YoutubeIE from yt_dlp.jsinterp import JSInterpreter |