diff options
author | 2021-05-07 11:19:31 -0300 | |
---|---|---|
committer | 2021-05-07 11:19:31 -0300 | |
commit | 9e6004f26d7d95537cef6e60c8ee7bf78e705a82 (patch) | |
tree | 9bbb00c7adb2e10bad73691d70eb46cd350dffed | |
parent | Implement the math and science questions, added a dynamic_id checker (diff) |
fix NameError, add some forgotten imports
-rw-r--r-- | bot/exts/evergreen/trivia_quiz.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/exts/evergreen/trivia_quiz.py b/bot/exts/evergreen/trivia_quiz.py index 1139e3e1..2158ac9c 100644 --- a/bot/exts/evergreen/trivia_quiz.py +++ b/bot/exts/evergreen/trivia_quiz.py @@ -9,11 +9,12 @@ from discord.ext import commands from fuzzywuzzy import fuzz from bot.constants import Roles +from bot.constants import NEGATIVE_REPLIES +from typing import Optional, List, Tuple logger = logging.getLogger(__name__) - WRONG_ANS_RESPONSE = [ "No one answered correctly!", "Better luck next time" |