Skip to content

Commit

Permalink
[Scripts] Accept "Ken Starr" trivia answer for "(Kenneth) Starr"
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Jul 28, 2023
1 parent e75ffaa commit 3eb091e
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 @@ -103,6 +103,15 @@
)
connection.commit()

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

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

0 comments on commit 3eb091e

Please sign in to comment.