[cleanup] Bump ruff to 0.12.x (#13596)

Authored by: seproDev
This commit is contained in:
sepro 2025-07-01 21:17:11 +02:00 committed by GitHub
parent f3008bc5f8
commit ca5cce5b07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -495,7 +495,7 @@ class NhkForSchoolBangumiIE(InfoExtractor):
chapters = None
if chapter_durations and chapter_titles and len(chapter_durations) == len(chapter_titles):
start_time = chapter_durations
end_time = chapter_durations[1:] + [duration]
end_time = [*chapter_durations[1:], duration]
chapters = [{
'start_time': s,
'end_time': e,