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/events/trivianight/_questions.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/events/trivianight/_questions.py')
-rw-r--r-- | bot/exts/events/trivianight/_questions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/events/trivianight/_questions.py b/bot/exts/events/trivianight/_questions.py index d6beced9..5f1046dc 100644 --- a/bot/exts/events/trivianight/_questions.py +++ b/bot/exts/events/trivianight/_questions.py @@ -127,7 +127,7 @@ class QuestionView(View): if len(guesses) != 0: answers_chosen = { answer_choice: len( - tuple(filter(lambda x: x[0] == answer_choice, guesses.values())) + tuple(filter(lambda x: x[0] == answer_choice, guesses.values())) # noqa: B023 ) for answer_choice in labels } |