From d14c943002874588941c8d84aca09e1da4b99f36 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 9 Nov 2024 11:00:38 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- ciphers/rot13.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ciphers/rot13.py b/ciphers/rot13.py index 07be75356..74f52ad97 100644 --- a/ciphers/rot13.py +++ b/ciphers/rot13.py @@ -9,7 +9,7 @@ def dencrypt(s: str) -> str: >>> dencrypt(s) == msg True """ - out:list[str] = [] + out: list[str] = [] n = 13 for c in s: if "A" <= c <= "Z":