Skip to content

Commit

Permalink
add __main__ around print (#8747)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLuo7 authored May 19, 2023
1 parent cf5e34d commit edc17b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ciphers/mixed_keyword_cypher.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,5 @@ def mixed_keyword(key: str = "college", pt: str = "UNIVERSITY") -> str:
return cypher


print(mixed_keyword("college", "UNIVERSITY"))
if __name__ == "__main__":
print(mixed_keyword("college", "UNIVERSITY"))

0 comments on commit edc17b6

Please sign in to comment.