mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
remove unnecessary symbolic name for group
This commit is contained in:
parent
7e0480ae0e
commit
fd40bdc0be
1 changed files with 0 additions and 2 deletions
|
@ -31,7 +31,6 @@ def _real_extract(self, url):
|
|||
r'"data":{"film":(?P<data>{.*?}})}',
|
||||
webpage,
|
||||
'data',
|
||||
group='data'
|
||||
), display_id)
|
||||
title = json_data['title']
|
||||
video_id = json_data['id']
|
||||
|
@ -44,7 +43,6 @@ def _real_extract(self, url):
|
|||
r'sources: (?P<sources>\[.*?\])',
|
||||
embed_webpage,
|
||||
'sources',
|
||||
group='sources',
|
||||
flags=DOTALL
|
||||
)), video_id)
|
||||
|
||||
|
|
Loading…
Reference in a new issue