fix: remove spurious f-string prefix (ruff F541)
Lint / Shell (shellcheck) (push) Successful in 9s
Lint / JS (eslint) (push) Successful in 7s
Lint / Python (ruff) (push) Successful in 4s
Lint / Python deps (pip-audit) (push) Successful in 38s
Lint / Secret scan (gitleaks) (push) Successful in 4s

This commit is contained in:
2026-04-29 16:15:39 -04:00
parent 88627470c1
commit 278f850f0c
+1 -1
View File
@@ -3729,7 +3729,7 @@ async def cmd_cancel(client: AsyncClient, room_id: str, sender: str, args: str):
if not is_elevated(client, room_id, sender):
if cancelled:
await send_text(client, room_id, f"✅ Your Blackjack game has been cancelled.")
await send_text(client, room_id, "✅ Your Blackjack game has been cancelled.")
else:
await send_text(client, room_id,
"No active game to cancel. (Cancelling room games requires PL50+.)")