diff options
| author | 2021-10-27 19:08:34 -0400 | |
|---|---|---|
| committer | 2022-02-09 18:13:37 -0500 | |
| commit | 805cb8025433c87454027aad4e70bbe72b86dbdb (patch) | |
| tree | 8065bbe3182262ed7ea99460a12e8c5587f4cfec /bot/exts/events/trivianight/trivianight.py | |
| parent | Use partial ellipsis in revealing answer (diff) | |
Bluenix's reviews' changes
Diffstat (limited to 'bot/exts/events/trivianight/trivianight.py')
| -rw-r--r-- | bot/exts/events/trivianight/trivianight.py | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/bot/exts/events/trivianight/trivianight.py b/bot/exts/events/trivianight/trivianight.py index 2ec869ab..bb7c205b 100644 --- a/bot/exts/events/trivianight/trivianight.py +++ b/bot/exts/events/trivianight/trivianight.py @@ -1,4 +1,3 @@ -import logging  from json import loads  from random import choice @@ -7,6 +6,7 @@ from discord.ext import commands  from bot.bot import Bot  from bot.constants import Colours, POSITIVE_REPLIES +  from ._questions import QuestionView, Questions  from ._scoreboard import Scoreboard, ScoreboardView @@ -30,7 +30,6 @@ class TriviaNight(commands.Cog):          json_text = (await ctx.message.attachments[0].read()).decode("utf8")          serialized_json = loads(json_text)          self.questions.view = QuestionView() -        logging.getLogger(__name__).debug(self.questions.view)          self.scoreboard.view = ScoreboardView(self.bot)          self.questions.set_questions(serialized_json)          success_embed = Embed( | 
