Skip to content

Commit 8ffc4f8

Browse files
GeorgeCharacclauss
authored andcommitted
fixed bug (#1610)
Removed comma from print statement causing and error.
1 parent 74aeaa3 commit 8ffc4f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ciphers/caesar_cipher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def brute_force(input_string: str) -> None:
3939

4040
def main():
4141
while True:
42-
print(f'{"-" * 10}\n Menu\n{"-", * 10}')
42+
print(f'{"-" * 10}\n Menu\n{"-" * 10}')
4343
print(*["1.Encrpyt", "2.Decrypt", "3.BruteForce", "4.Quit"], sep="\n")
4444
choice = input("What would you like to do?: ")
4545
if choice not in ["1", "2", "3", "4"]:

0 commit comments

Comments
 (0)