diff options
| author | 2020-12-19 17:57:17 +0000 | |
|---|---|---|
| committer | 2020-12-19 17:57:17 +0000 | |
| commit | 481adbfb6ba0eca8d58629e3445de1ec330c60a4 (patch) | |
| tree | ce8e59ea855bee0c38b3220af64fd346d0e1a2c2 | |
| parent | Don't track bot messages (diff) | |
Remove whitespace
| -rw-r--r-- | metricity/bot.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/metricity/bot.py b/metricity/bot.py index 63d06ab..6671221 100644 --- a/metricity/bot.py +++ b/metricity/bot.py @@ -304,7 +304,7 @@ async def on_message(message: DiscordMessage) -> None:      if not message.guild:          return -     +      if message.author.bot:          return  |