diff options
Diffstat (limited to '')
-rwxr-xr-x | cogs/utils.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index c189370..512505f 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -417,7 +417,9 @@ class Utils(commands.Cog): fairStreak = fair[userId]["streak"] + 1 else: fairStreak = 1 - await message.channel.send("streak lost. <:sad:716629485449117708>") + await message.channel.send( + "streak lost. <:sad:716629485449117708>" + ) # only send && update if user is fairing for the first time today fair[userId] = { |