From 008ae76acad6486d057aa7d55a51db4a6dc8f3d7 Mon Sep 17 00:00:00 2001 From: Romain J Date: Tue, 20 Oct 2020 23:56:02 +0200 Subject: [PATCH] fix(PYL-R1705): --- tuxbot/core/utils/functions/extra.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tuxbot/core/utils/functions/extra.py b/tuxbot/core/utils/functions/extra.py index 6ed053e..f7c070e 100644 --- a/tuxbot/core/utils/functions/extra.py +++ b/tuxbot/core/utils/functions/extra.py @@ -48,8 +48,8 @@ class ContextPlus(commands.Context): else: await message.delete() return message - else: - return await super().send(content, *args, **kwargs) + + return await super().send(content, *args, **kwargs) class CommandPLus(flags.FlagCommand):