Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
kclauhk committed Feb 6, 2025
1 parent 183ebed commit 117b829
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion yt_dlp/extractor/vmware.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ def search_query(query, page_no, records_per_page, account):
total_count = traverse_obj(
search_results, ('info', 'videos', 'total_result_count', {int}), default=0)
for video in traverse_obj(search_results, ('records', 'videos', lambda _, v: v['external_id'])):
yield self.url_result(self._LIBRARY_MAP[account][1] % video['external_id'],
yield self.url_result(
self._LIBRARY_MAP[account][1] % video['external_id'],
**traverse_obj(video, {
'id': ('external_id', {str}),
'title': ('name', {str}),
Expand Down

0 comments on commit 117b829

Please sign in to comment.