diff options
author | dirkf <fieldhouse@gmx.net> | 2022-08-09 21:05:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 21:05:00 +0100 |
commit | deee741fb145360576ceae9d69b1b43db082c404 (patch) | |
tree | a52cc2ec86ad842fa396ec72662674a4ce1dcac0 /youtube_dl/extractor/minds.py | |
parent | adb5294177265ba35b45746dbb600965076ed150 (diff) |
[test, etc] Improve download test logs; also clean up some new flake8 issues (#31153)
* [test] Identify testcase errors better
* [test] Identify download errors better
* [extractor/minds] Linter
* [extractor/aes] Linter
Diffstat (limited to 'youtube_dl/extractor/minds.py')
-rw-r--r-- | youtube_dl/extractor/minds.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/minds.py b/youtube_dl/extractor/minds.py index 8e9f0f825..e8fd582aa 100644 --- a/youtube_dl/extractor/minds.py +++ b/youtube_dl/extractor/minds.py @@ -78,7 +78,7 @@ class MindsIE(MindsBaseIE): else: return self.url_result(entity['perma_url']) else: - assert(entity['subtype'] == 'video') + assert (entity['subtype'] == 'video') video_id = entity_id # 1080p and webm formats available only on the sources array video = self._call_api( |