From 278f850f0c1ac2e6cd106870a04f60fb6b49bdf0 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Wed, 29 Apr 2026 16:15:39 -0400 Subject: [PATCH] fix: remove spurious f-string prefix (ruff F541) --- matrixbot/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrixbot/commands.py b/matrixbot/commands.py index 9e18777..3ada0ee 100644 --- a/matrixbot/commands.py +++ b/matrixbot/commands.py @@ -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+.)")