diff options
author | Jesús <heckyel@hyperbola.info> | 2020-12-21 21:46:39 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-12-21 21:46:39 -0500 |
commit | 58c0ffc38d09cbf2363f70370e2108e7693609bd (patch) | |
tree | 570748971a68d789d08dfdc892f775c65c02af1f | |
parent | 90f8317b36285f0715e9b07a1a871aea657c4111 (diff) | |
download | yt-local-58c0ffc38d09cbf2363f70370e2108e7693609bd.tar.lz yt-local-58c0ffc38d09cbf2363f70370e2108e7693609bd.tar.xz yt-local-58c0ffc38d09cbf2363f70370e2108e7693609bd.zip |
pep8
-rw-r--r-- | youtube/watch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/watch.py b/youtube/watch.py index 5d9f16c..a7d712a 100644 --- a/youtube/watch.py +++ b/youtube/watch.py @@ -308,7 +308,7 @@ def extract_info(video_id, use_invidious, playlist_id=None, index=None): def video_quality_string(format): if format['vcodec']: - result =str(format['width'] or '?') + 'x' + str(format['height'] or '?') + result = str(format['width'] or '?') + 'x' + str(format['height'] or '?') if format['fps']: result += ' ' + str(format['fps']) + 'fps' return result |