Skip to content

Commit edc17b6

Browse files
authored
add __main__ around print (#8747)
1 parent cf5e34d commit edc17b6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ciphers/mixed_keyword_cypher.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,5 @@ def mixed_keyword(key: str = "college", pt: str = "UNIVERSITY") -> str:
6565
return cypher
6666

6767

68-
print(mixed_keyword("college", "UNIVERSITY"))
68+
if __name__ == "__main__":
69+
print(mixed_keyword("college", "UNIVERSITY"))

0 commit comments

Comments
 (0)