Skip to content

Commit

Permalink
friendcode.py: Fix missing whitespace around operator
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenChen committed May 17, 2024
1 parent 018f9af commit e0eca6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/friendcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit e0eca6b

Please sign in to comment.