parent
f3008bc5f8
commit
ca5cce5b07
3 changed files with 5 additions and 3 deletions
|
|
@ -435,7 +435,7 @@ def sub_bytes_inv(data):
|
|||
|
||||
|
||||
def rotate(data):
|
||||
return data[1:] + [data[0]]
|
||||
return [*data[1:], data[0]]
|
||||
|
||||
|
||||
def key_schedule_core(data, rcon_iteration):
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue