diff options
author | 2022-02-25 00:17:53 +0200 | |
---|---|---|
committer | 2022-02-25 00:17:53 +0200 | |
commit | 862220075418d84211f57c35a1484b8bf4bff8c1 (patch) | |
tree | 80a7fafe2b63564349f9a5a66e46f66e72dc2042 | |
parent | Fixed docstring. (diff) |
Fixed indentation.
-rw-r--r-- | bot/exts/fun/uwu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py index 4340a162..91c5e11b 100644 --- a/bot/exts/fun/uwu.py +++ b/bot/exts/fun/uwu.py @@ -118,8 +118,8 @@ class Uwu(Cog): text, embed = await fun_cog._get_text_and_embed(ctx, text) # Grabs the text from the embed for uwuification. - if embed is not None: - embed = fun_cog._convert_embed(self._uwuify, embed) + if embed is not None: + embed = fun_cog._convert_embed(self._uwuify, embed) else: embed = None converted_text = self._uwuify(text) |