Skip to content

Commit bc898c8

Browse files
Used list instead of string in rot13.py and removed n
1 parent 1f681f5 commit bc898c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ciphers/rot13.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def dencrypt(s: str) -> str:
99
>>> dencrypt(s) == msg
1010
True
1111
"""
12-
out = []
12+
out: list[str] = []
1313
n = 13
1414
for c in s:
1515
if "A" <= c <= "Z":

0 commit comments

Comments
 (0)