diff options
| author | 2019-12-02 15:46:16 +0530 | |
|---|---|---|
| committer | 2019-12-02 15:46:16 +0530 | |
| commit | 23e59f291ba0b186bdbcdc30d6e846837b504ad4 (patch) | |
| tree | 43239fcacf662180ffa8773f2c29ded8a25f0598 /bot/seasons/evergreen/trivia_quiz.py | |
| parent | added a new command to stop the quiz and removed the cooldown on the quiz com... (diff) | |
Update bot/seasons/evergreen/trivia_quiz.py
adding space around special chars
Co-Authored-By: Mark <[email protected]>
Diffstat (limited to 'bot/seasons/evergreen/trivia_quiz.py')
| -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 69fecb3a..4e465052 100644 --- a/bot/seasons/evergreen/trivia_quiz.py +++ b/bot/seasons/evergreen/trivia_quiz.py @@ -138,7 +138,7 @@ class TriviaQuiz(commands.Cog):                          hints = question_dict["hints"]                          await ctx.send(f"**Hint #{hint_no+1}\n**{hints[hint_no]}")                      else: -                        await ctx.send(f"{30-hint_no*10}s left!") +                        await ctx.send(f"{30 - hint_no * 10}s left!")                  # Once hint or time alerts has been sent 2 times, the hint_no value will be 3                  # If hint_no > 2, then it means that all hints/time alerts have been sent. | 
