diff options
author | 2022-08-23 21:38:49 +0100 | |
---|---|---|
committer | 2022-09-21 23:02:56 +0100 | |
commit | 2993a3e13bf1eb939bf4ac451ffe19b64a30709a (patch) | |
tree | 4b76184d5e7d38132f8a80fbbc859c5c738dc65e /bot/exts/fun/trivia_quiz.py | |
parent | Update redis init due to new redis-py upgrade (diff) |
Support discord.py's new async cog loading
Diffstat (limited to 'bot/exts/fun/trivia_quiz.py')
-rw-r--r-- | bot/exts/fun/trivia_quiz.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/fun/trivia_quiz.py b/bot/exts/fun/trivia_quiz.py index 4a1cec5b..31652374 100644 --- a/bot/exts/fun/trivia_quiz.py +++ b/bot/exts/fun/trivia_quiz.py @@ -435,7 +435,7 @@ class TriviaQuiz(commands.Cog): def contains_correct_answer(m: discord.Message) -> bool: return m.channel == ctx.channel and any( fuzz.ratio(answer.lower(), m.content.lower()) > variation_tolerance - for answer in quiz_entry.answers + for answer in quiz_entry.answers # noqa: B023 ) return contains_correct_answer @@ -670,6 +670,6 @@ class TriviaQuiz(commands.Cog): await channel.send(embed=embed) -def setup(bot: Bot) -> None: +async def setup(bot: Bot) -> None: """Load the TriviaQuiz cog.""" - bot.add_cog(TriviaQuiz(bot)) + await bot.add_cog(TriviaQuiz(bot)) |