diff options
author | 2021-05-09 18:42:43 -0300 | |
---|---|---|
committer | 2021-05-09 18:42:43 -0300 | |
commit | 2cd8c03c9d9daf410624589f8a94dfe4348c063c (patch) | |
tree | 75772f84e64feae64a75da0967defa46dc8710de | |
parent | fix lint failure; add a newline at line 444 (diff) |
fix another linting fail regarding newlines in docstrings
-rw-r--r-- | bot/exts/evergreen/trivia_quiz.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/exts/evergreen/trivia_quiz.py b/bot/exts/evergreen/trivia_quiz.py index f20a21f5..60dc2d0c 100644 --- a/bot/exts/evergreen/trivia_quiz.py +++ b/bot/exts/evergreen/trivia_quiz.py @@ -224,11 +224,13 @@ class TriviaQuiz(commands.Cog): async def quiz_game(self, ctx: commands.Context, category: Optional[str], questions: Optional[int]) -> None: """ Start a quiz! + Questions for the quiz can be selected from the following categories: - general: Test your general knowledge. (default) - retro: Questions related to retro gaming. - math: General questions about mathematics ranging from grade 8 to grade 12. - science: Put your understanding of science to the test! + (More to come!) """ if ctx.channel.id not in self.game_status: |