aboutsummaryrefslogtreecommitdiffstats
path: root/youtube
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2020-12-21 21:46:39 -0500
committerJesús <heckyel@hyperbola.info>2020-12-21 21:46:39 -0500
commit58c0ffc38d09cbf2363f70370e2108e7693609bd (patch)
tree570748971a68d789d08dfdc892f775c65c02af1f /youtube
parent90f8317b36285f0715e9b07a1a871aea657c4111 (diff)
downloadyt-local-58c0ffc38d09cbf2363f70370e2108e7693609bd.tar.lz
yt-local-58c0ffc38d09cbf2363f70370e2108e7693609bd.tar.xz
yt-local-58c0ffc38d09cbf2363f70370e2108e7693609bd.zip
pep8
Diffstat (limited to 'youtube')
-rw-r--r--youtube/watch.py2
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