From dfff793daed63990f9dc2ef7b046589c399cb13c Mon Sep 17 00:00:00 2001 From: tsukumijima Date: Tue, 8 Sep 2020 03:44:35 +0900 Subject: [PATCH] [niconico] fix "E225 missing whitespace around operator" error in flake8 --- youtube_dl/downloader/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py index b3206cdc2..7b349c792 100644 --- a/youtube_dl/downloader/common.py +++ b/youtube_dl/downloader/common.py @@ -370,7 +370,7 @@ class FileDownloader(object): timer = [None] heartbeat_lock = None download_complete = False - if 'heartbeat_url'in info_dict: + if 'heartbeat_url' in info_dict: heartbeat_lock = threading.Lock() heartbeat_url = info_dict['heartbeat_url']