From 1048ce1db2dff2b8809322c75f5ff8b532c2dc29 Mon Sep 17 00:00:00 2001 From: tebarius <67242661+tebarius@users.noreply.github.com> Date: Mon, 18 Mar 2024 09:35:22 +0100 Subject: [PATCH] Update Mysteryhelfer.pyw --- Mysteryhelfer.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mysteryhelfer.pyw b/Mysteryhelfer.pyw index 4f178da..0b3e93a 100644 --- a/Mysteryhelfer.pyw +++ b/Mysteryhelfer.pyw @@ -4391,7 +4391,7 @@ def rail_decrypt(cipher: str, rails: int): out = "" x, y = 0, 0 down = True - for i in range(len(cipher)): + for _ in range(len(cipher)): out += arr[y][x] x += 1 if down and y + 1 == rails: