Skip to content

Commit 4ac6b3f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 81d83ab commit 4ac6b3f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ciphers/rot13.py

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def dencrypt(s: str) -> str:
2525
out.append(c)
2626
return "".join(out)
2727

28+
2829
def main() -> None:
2930
s0 = input("Enter message: ")
3031

@@ -34,7 +35,9 @@ def main() -> None:
3435
s2 = dencrypt(s1)
3536
print("Decryption:", s2)
3637

38+
3739
if __name__ == "__main__":
3840
import doctest
41+
3942
doctest.testmod()
4043
main()

0 commit comments

Comments
 (0)