diff options
| author | 2019-10-07 21:43:15 +0530 | |
|---|---|---|
| committer | 2019-10-07 21:43:15 +0530 | |
| commit | da1596f983e5ef19a56da5f9a62ffcbd8969283d (patch) | |
| tree | 21d55e509651a938cf31f6d902041b089262e610 | |
| parent | added function annotations to new command (diff) | |
fixed lint errors
| -rw-r--r-- | bot/seasons/evergreen/trivia_quiz.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/trivia_quiz.py b/bot/seasons/evergreen/trivia_quiz.py index 5b8eb65e..9a5cf43c 100644 --- a/bot/seasons/evergreen/trivia_quiz.py +++ b/bot/seasons/evergreen/trivia_quiz.py @@ -186,7 +186,7 @@ class TriviaQuiz(commands.Cog):                  await asyncio.sleep(2)      @commands.command(name="scoreboard") -    async def overall_scoreboard(self, ctx: commands.Context)-> None: +    async def overall_scoreboard(self, ctx: commands.Context) -> None:          """View everyone's score for this bot session."""          await self.send_score(ctx.channel, self.player_scores)  |