Added ability to pull weather information from db for game history

This commit is contained in:
kevroded 2021-01-06 20:35:37 -05:00
parent 957c11c60d
commit ff867b541c

View File

@ -850,7 +850,8 @@ def get_history():
game_dict = {"Team1" : game[1],
"Team1Score" : game[2],
"Team2" : game[3],
"Team2Score" : game[4]}
"Team2Score" : game[4],
"Weather" : game[5]}
games.append(game_dict)
return games