aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gintautas Kazlauskas <[email protected]>2022-02-25 00:20:17 +0200
committerGravatar Gintautas Kazlauskas <[email protected]>2022-02-25 00:20:17 +0200
commit76819000fdad3820397b67ceba5a1d4192dc50b6 (patch)
tree46bb928c29a1ec2a0fcfed12c2d9aded2a8b5328
parentFixed indentation. (diff)
Doublefixed indentation and removed unused import.
-rw-r--r--bot/exts/fun/uwu.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py
index 91c5e11b..44285ae9 100644
--- a/bot/exts/fun/uwu.py
+++ b/bot/exts/fun/uwu.py
@@ -6,7 +6,6 @@ from discord.ext import commands
from discord.ext.commands import Cog, Context, clean_content
from bot.bot import Bot
-from bot.exts.fun.fun import Fun
from bot.utils import helpers
WORD_REPLACE = {
@@ -117,7 +116,7 @@ class Uwu(Cog):
if (fun_cog := ctx.bot.get_cog("Fun")):
text, embed = await fun_cog._get_text_and_embed(ctx, text)
- # Grabs the text from the embed for uwuification.
+ # Grabs the text from the embed for uwuification.
if embed is not None:
embed = fun_cog._convert_embed(self._uwuify, embed)
else: