summaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/microsoftstream.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/microsoftstream.py')
-rw-r--r--yt_dlp/extractor/microsoftstream.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/extractor/microsoftstream.py b/yt_dlp/extractor/microsoftstream.py
index f6a0b41..b138810 100644
--- a/yt_dlp/extractor/microsoftstream.py
+++ b/yt_dlp/extractor/microsoftstream.py
@@ -37,11 +37,11 @@ class MicrosoftStreamIE(InfoExtractor):
sub_dict = automatic_captions if track.get('autoGenerated') else subtitles
sub_dict.setdefault(track['language'], []).append({
'ext': 'vtt',
- 'url': track.get('url')
+ 'url': track.get('url'),
})
return {
'subtitles': subtitles,
- 'automatic_captions': automatic_captions
+ 'automatic_captions': automatic_captions,
}
def extract_all_subtitles(self, *args, **kwargs):
@@ -66,7 +66,7 @@ class MicrosoftStreamIE(InfoExtractor):
f'{api_url}/videos/{video_id}', video_id,
headers=headers, query={
'$expand': 'creator,tokens,status,liveEvent,extensions',
- 'api-version': '1.4-private'
+ 'api-version': '1.4-private',
})
video_id = video_data.get('id') or video_id
language = video_data.get('language')