Skip to content

Commit cb072fe

Browse files
committed
remove debugging printings
1 parent 5ec32ef commit cb072fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brain_games/game_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def game_engine(get_question_and_answer: callable, introduction):
1010

1111
for _ in range(const.GAMES_TO_WIN):
1212
question, answer = get_question_and_answer()
13-
print(f'TESTPRINT, question, answer: {question}, {answer}')
13+
# print(f'TESTPRINT, question, answer: {question}, {answer}')
1414

1515
print(f'Question: {question}')
1616
user_answer = prompt.string('Your answer: ')

0 commit comments

Comments
 (0)