We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f681f5 commit bc898c8Copy full SHA for bc898c8
ciphers/rot13.py
@@ -9,7 +9,7 @@ def dencrypt(s: str) -> str:
9
>>> dencrypt(s) == msg
10
True
11
"""
12
- out = []
+ out: list[str] = []
13
n = 13
14
for c in s:
15
if "A" <= c <= "Z":
0 commit comments