1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-08-14 00:18:31 +00:00

fix autopep8 rule

This commit is contained in:
Nuno Costa 2025-08-09 18:21:35 +01:00
parent 229dfba231
commit 9316f5c642

View File

@ -49,7 +49,7 @@ def _extract_enclosing_js_object(self, webpage, keyword):
elif ch == '}':
depth -= 1
if depth == 0:
return webpage[start:i+1]
return webpage[start:i + 1]
return None
def _real_extract(self, url):