diff options
author | 2021-05-09 17:37:42 -0300 | |
---|---|---|
committer | 2021-05-09 17:37:42 -0300 | |
commit | bfc7c4335a4e7156f877607b62491b7aaf2faa58 (patch) | |
tree | e13e21ca5bc2d27eeb0c5a9527eb526dcb0e7d67 /bot/exts/evergreen/trivia_quiz.py | |
parent | use `operator` module instead of lambda functions (diff) |
lint failure fix, imported in alphabetical order
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 10237be9..7a498ebd 100644 --- a/bot/exts/evergreen/trivia_quiz.py +++ b/bot/exts/evergreen/trivia_quiz.py @@ -1,8 +1,8 @@ import asyncio import json import logging -import random import operator +import random from pathlib import Path from typing import List, Optional, Tuple |