1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-11-07 01:55:13 +00:00

[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
3 changed files with 5 additions and 3 deletions

View File

@@ -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):