diff options
author | 2021-08-06 16:34:19 +0100 | |
---|---|---|
committer | 2021-08-06 16:34:19 +0100 | |
commit | 8e653f4f6fc64ad78809e5ec1943ee38865bf221 (patch) | |
tree | 6455a1ef21980afecffc8a88219ad56e90065e44 /bot/exts/evergreen/trivia_quiz.py | |
parent | Pinned aioredis to 1.3 and relocked dependencies (diff) |
Replace fuzzywuzzy with rapidfuzz
Diffstat (limited to 'bot/exts/evergreen/trivia_quiz.py')
-rw-r--r-- | bot/exts/evergreen/trivia_quiz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/trivia_quiz.py b/bot/exts/evergreen/trivia_quiz.py index 28924aed..bc25cbf7 100644 --- a/bot/exts/evergreen/trivia_quiz.py +++ b/bot/exts/evergreen/trivia_quiz.py @@ -9,7 +9,7 @@ from typing import Callable, List, Optional import discord from discord.ext import commands -from fuzzywuzzy import fuzz +from rapidfuzz import fuzz from bot.bot import Bot from bot.constants import Colours, NEGATIVE_REPLIES, Roles |