Skip to content

Commit

Permalink
fix brain-even with old code
Browse files Browse the repository at this point in the history
  • Loading branch information
alinali87 committed Jul 3, 2024
1 parent f4a7cc7 commit 1a97c7e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion brain_games/scripts/brain_even.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
import random
from brain_games.cli import welcome_user
from brain_games.utils import congrat_user
from brain_games.temp import play_game
from brain_games.scripts.brain_even_old import gen_question_brain_even


def even_game():
Expand All @@ -28,7 +30,8 @@ def even_game():


def main():
even_game()
# even_game()
play_game('Answer "yes" if the number is even, otherwise answer "no".', gen_question_brain_even())


if __name__ == '__main__':
Expand Down

0 comments on commit 1a97c7e

Please sign in to comment.