From 58c0ffc38d09cbf2363f70370e2108e7693609bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Mon, 21 Dec 2020 21:46:39 -0500 Subject: pep8 --- youtube/watch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'youtube/watch.py') 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 -- cgit v1.2.3