mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
Python: Add type annotations to all 'print' functions (#662)
* Add test to superstartrek and fixes several issues in superstartrek - I probably introduced them 🙈
* Mastermind type annotations
This commit is contained in:
@@ -56,7 +56,7 @@ def read_continue_choice():
|
||||
return False
|
||||
|
||||
|
||||
def print_summary_report(running_correct: int):
|
||||
def print_summary_report(running_correct: int) -> None:
|
||||
print()
|
||||
if running_correct > 10:
|
||||
print()
|
||||
|
||||
Reference in New Issue
Block a user