Skip to content

Correct typos and add new secret_language files #18236

Correct typos and add new secret_language files

Correct typos and add new secret_language files #18236

Triggered via pull request June 21, 2026 15:44
Status Failure
Total duration 13s
Artifacts

ruff.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

2 errors
ruff
Process completed with exit code 1.
ruff (SIM108): strings/secret_language.py#L83
strings/secret_language.py:83:5: SIM108 Use ternary operator `code = code[-1] + code[:-1] if len(code) >= 3 else code[::-1]` instead of `if`-`else`-block help: Replace `if`-`else`-block with `code = code[-1] + code[:-1] if len(code) >= 3 else code[::-1]`