fix export function

This commit is contained in:
Maximilian Keßler 2023-03-13 14:58:51 +01:00
parent 5c06ef7887
commit ab2cda2207
Signed by: max
GPG Key ID: BCC5A619923C0BA5

View File

@ -52,16 +52,16 @@ def export_game(game_id) -> [bool, bool]:
all_or_nothing = options.get('allOrNothing', False)
with conn.cursor() as cur:
cur.execute(
"UPDATE games SET"
"deck_plays=(%s)"
"one_extra_card=(%s)"
"one_less_card=(%s)"
"all_or_nothing=(%s)"
"actions=(%s)"
"WHERE id=(%s);",
"UPDATE games SET "
"deck_plays = (%s),"
"one_extra_card = (%s),"
"one_less_card = (%s),"
"all_or_nothing = (%s),"
"actions = (%s) "
"WHERE id = (%s);",
(deck_plays, one_extra_card, one_less_card, all_or_nothing, actions, game_id))
conn.commit()
return True, not any(deck_plays, one_extra_card, one_less_card, all_or_nothing)
return True, not any([deck_plays, one_extra_card, one_less_card, all_or_nothing])
if __name__ == "__main__":
export_game(913436)