Update database.py

removed an extraneous print
This commit is contained in:
Sakimori 2020-12-26 05:11:47 -05:00 committed by GitHub
parent 220a6a7a4b
commit 7194c63813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -252,7 +252,6 @@ def add_stats(player_game_stats_list):
for (name, player_stats_dic) in player_game_stats_list:
c.execute("SELECT * FROM stats WHERE name=?",(name,))
this_player = c.fetchone()
print(this_player)
if this_player is not None:
for stat in player_stats_dic.keys():
c.execute(f"SELECT {stat} FROM stats WHERE name=?",(name,))