debug removed weather info should be getting saved to the DB
This commit is contained in:
parent
9a5162a448
commit
f8b5480cfa
|
@ -64,8 +64,7 @@ def update_loop():
|
||||||
if state["update_pause"] == 1:
|
if state["update_pause"] == 1:
|
||||||
state["update_emoji"] = "🍿"
|
state["update_emoji"] = "🍿"
|
||||||
if this_game.over:
|
if this_game.over:
|
||||||
print(this_game.weather.name)
|
db.cache_history(this_game.teams['home'].name, this_game.teams["home"].score, this_game.teams['away'].name, this_game.teams['away'].score, this_game.weather.name)
|
||||||
#db.cache_history(this_game.teams['home'].name, this_game.teams["home"].score, this_game.teams['away'].name, this_game.teams['away'].score, this_game.weather_text)
|
|
||||||
state["display_inning"] -= 1
|
state["display_inning"] -= 1
|
||||||
state["display_top_of_inning"] = False
|
state["display_top_of_inning"] = False
|
||||||
winning_team = this_game.teams['home'].name if this_game.teams['home'].score > this_game.teams['away'].score else this_game.teams['away'].name
|
winning_team = this_game.teams['home'].name if this_game.teams['home'].score > this_game.teams['away'].score else this_game.teams['away'].name
|
||||||
|
|
Loading…
Reference in New Issue
Block a user