Skip to content

Commit

Permalink
[Scripts] Accept "Renault" trivia answer for "Louis Renault"
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Jul 28, 2023
1 parent e9ff864 commit 8598d33
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/update_trivia.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,15 @@
)
connection.commit()

connection.execute(
"""
UPDATE trivia.clues
SET acceptable_answers = ARRAY['Louis Renault', 'Renault']
WHERE answer = 'Louis Renault'
"""
)
connection.commit()

connection.execute(
"""
UPDATE trivia.clues
Expand Down

0 comments on commit 8598d33

Please sign in to comment.