From d556ee3704f9a62d0c340eccee69efc3be3b7f61 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 17 May 2024 00:20:00 -0400 Subject: [PATCH] fix(seautils): minor syntax change --- seautils/seautils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seautils/seautils.py b/seautils/seautils.py index 3bdf8b4..6790627 100644 --- a/seautils/seautils.py +++ b/seautils/seautils.py @@ -62,7 +62,7 @@ class SeaUtils(commands.Cog): text = self.format_src(ctx, obj) elif obj := ctx.bot.get_cog(object): text = self.format_src(ctx, type(obj)) - elif obj:= ctx.bot.get_command(object): + elif obj := ctx.bot.get_command(object): text = self.format_src(ctx, obj) temp_content = cf.pagify( text=cleanup_code(text),