1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-06-27 17:08:32 +00:00

Add trailing comma, fix failing code check

This commit is contained in:
Martijn van der Ven 2025-04-13 18:50:48 +02:00
parent fb16388260
commit e6856c178a

View File

@ -154,7 +154,7 @@ def _extract_firefox_cookies(profile, container, logger):
container_id = next((context.get('userContextId') for context in identities if container in (
context.get('name'),
try_call(lambda: re.fullmatch(r'userContext([^\.]+)\.label', context['l10nID']).group()),
try_call(lambda: re.fullmatch(r'user-context-(.+)', context['l10nId']).group())
try_call(lambda: re.fullmatch(r'user-context-(.+)', context['l10nId']).group()),
)), None)
if not isinstance(container_id, int):
raise ValueError(f'could not find firefox container "{container}" in containers.json')