No longer asks before printing instructions

This commit is contained in:
Thomas Kwashnak
2022-01-06 08:40:45 -05:00
committed by GitHub
parent 27b81d4871
commit 919bb2f682

View File

@@ -51,8 +51,8 @@ def play_game():
print_board(board)
def main():
if input("Do you want instrunctions?\n").lower().startswith("y"):
print_instructions()
# if input("Do you want instrunctions?\n").lower().startswith("y"):
print_instructions()
play_game()
if __name__ == "__main__":