From e0eca6b30f43b9bdbb45a8b75f0a95bb7ebb2804 Mon Sep 17 00:00:00 2001 From: FrozenChen Date: Fri, 17 May 2024 11:29:46 -0300 Subject: [PATCH] friendcode.py: Fix missing whitespace around operator --- cogs/friendcode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/friendcode.py b/cogs/friendcode.py index 67a1dbffd..1ec703682 100644 --- a/cogs/friendcode.py +++ b/cogs/friendcode.py @@ -66,7 +66,7 @@ async def fcregister(self, ctx: KurisuContext, fc_str: str): await self.bot.extras.add_3ds_friend_code(ctx.author, fc) else: await self.extras.add_switch_friend_code(ctx.author, fc) - await ctx.send(f"{ctx.author.mention} {console} friend code inserted: {self.n3ds_fc_to_string(fc) if console=='3ds' else self.switch_fc_to_string(fc)}") + await ctx.send(f"{ctx.author.mention} {console} friend code inserted: {self.n3ds_fc_to_string(fc) if console == '3ds' else self.switch_fc_to_string(fc)}") @commands.guild_only() @commands.command()