From bd19bc3506a4082759c03b38577f8f3a16091f9b Mon Sep 17 00:00:00 2001 From: lulin2025 <140018124+lulin2025@users.noreply.github.com> Date: Wed, 19 Jul 2023 16:42:00 -0400 Subject: [PATCH] Update main.py --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 765751c..b6fab06 100644 --- a/main.py +++ b/main.py @@ -4,7 +4,7 @@ def main(): while True: try: #used so to take a valid input from user - num_player = int(input(("Would you like to play in terminal(1) or on GUI(2): "))) + num_player = int(input(("Would you like to play in terminal(1) or on GUI(2) "))) x = int(num_player) if x==2 or x==1: break #breaks if valid1 int is inputted @@ -20,4 +20,4 @@ def main(): play_again = poker_gui.play() -main() \ No newline at end of file +main()