Skip to content

Commit

Permalink
Update nhl_goal_light.py
Browse files Browse the repository at this point in the history
  • Loading branch information
arim215 authored Nov 13, 2019
1 parent 8e0859f commit 35398d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nhl_goal_light.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def setup_nhl():
except IndexError:
team_id = ""
if team_id == "":
team = raw_input("Enter team you want to setup (without city) (Default: Canadiens) \n")
team = input("Enter team you want to setup (without city) (Default: Canadiens) \n")
if team == "":
team = "Canadiens"
else:
Expand All @@ -70,7 +70,7 @@ def setup_nhl():
except IndexError:
delay = ""
if delay is "":
delay = raw_input("Enter delay required to sync : \n")
delay = input("Enter delay required to sync : \n")
if delay is "":
delay = 0
delay = float(delay)
Expand Down

0 comments on commit 35398d6

Please sign in to comment.