1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 00:25:08 +00:00

[cleanup] Add more ruff rules (#10149)

Authored by: seproDev

Reviewed-by: bashonly <88596187+bashonly@users.noreply.github.com>
Reviewed-by: Simon Sawicki <contact@grub4k.xyz>
This commit is contained in:
sepro
2024-06-12 01:09:58 +02:00
committed by GitHub
parent db50f19d76
commit add96eb9f8
915 changed files with 7027 additions and 7246 deletions

View File

@ -22,8 +22,8 @@ class PrankCastIE(InfoExtractor):
'description': '',
'categories': ['prank'],
'tags': ['prank call', 'prank', 'live show'],
'upload_date': '20220825'
}
'upload_date': '20220825',
},
}, {
'url': 'https://prankcast.com/phonelosers/showreel/2048-NOT-COOL',
'info_dict': {
@ -39,8 +39,8 @@ class PrankCastIE(InfoExtractor):
'description': '',
'categories': ['prank'],
'tags': ['prank call', 'prank', 'live show'],
'upload_date': '20221006'
}
'upload_date': '20221006',
},
}]
def _real_extract(self, url):
@ -62,10 +62,10 @@ class PrankCastIE(InfoExtractor):
'uploader': uploader,
'channel_id': str_or_none(json_info.get('user_id')),
'duration': try_call(lambda: parse_iso8601(json_info['end_date']) - start_date),
'cast': list(filter(None, [uploader] + traverse_obj(guests_json, (..., 'name')))),
'cast': list(filter(None, [uploader, *traverse_obj(guests_json, (..., 'name'))])),
'description': json_info.get('broadcast_description'),
'categories': [json_info.get('broadcast_category')],
'tags': try_call(lambda: json_info['broadcast_tags'].split(','))
'tags': try_call(lambda: json_info['broadcast_tags'].split(',')),
}
@ -85,8 +85,8 @@ class PrankCastPostIE(InfoExtractor):
'cast': ['Devonanustart'],
'description': '',
'categories': ['prank call'],
'upload_date': '20240104'
}
'upload_date': '20240104',
},
}, {
'url': 'https://prankcast.com/despicabledogs/posts/6217-jake-the-work-crow-',
'info_dict': {
@ -101,8 +101,8 @@ class PrankCastPostIE(InfoExtractor):
'cast': ['despicabledogs'],
'description': 'https://imgur.com/a/vtxLvKU',
'categories': [],
'upload_date': '20240104'
}
'upload_date': '20240104',
},
}]
def _real_extract(self, url):
@ -124,7 +124,7 @@ class PrankCastPostIE(InfoExtractor):
'uploader': uploader,
'channel_id': str_or_none(post.get('user_id')),
'duration': float_or_none(content.get('duration')),
'cast': list(filter(None, [uploader] + traverse_obj(guests_json, (..., 'name')))),
'cast': list(filter(None, [uploader, *traverse_obj(guests_json, (..., 'name'))])),
'description': post.get('post_body'),
'categories': list(filter(None, [content.get('category')])),
'tags': try_call(lambda: list(filter('', post['post_tags'].split(',')))),
@ -133,5 +133,5 @@ class PrankCastPostIE(InfoExtractor):
'url': f'https://prankcast.com/api/private/chat/select-broadcast?id={post["content_id"]}&cache=',
'ext': 'json',
}],
} if post.get('content_id') else None
} if post.get('content_id') else None,
}