From 07d5161f97eedc63e8322f12497106ba7ca82229 Mon Sep 17 00:00:00 2001 From: Michael Oliveira <34169552+Flame442@users.noreply.github.com> Date: Mon, 23 Dec 2024 22:42:17 -0500 Subject: [PATCH] Reduce Black aggressiveness --- redbot/core/core_commands.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 30e69779d8c..82c73dfaeb2 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -2617,9 +2617,9 @@ async def bankset_reset(self, ctx, confirmation: bool = False): "This will delete all bank accounts for {scope}.\nIf you're sure, type " "`{prefix}bankset reset yes`" ).format( - scope=( - self.bot.user.display_name if await bank.is_global() else _("this server") - ), + scope=self.bot.user.display_name + if await bank.is_global() + else _("this server"), prefix=ctx.clean_prefix, ) ) @@ -2627,9 +2627,9 @@ async def bankset_reset(self, ctx, confirmation: bool = False): await bank.wipe_bank(guild=ctx.guild) await ctx.send( _("All bank accounts for {scope} have been deleted.").format( - scope=( - self.bot.user.display_name if await bank.is_global() else _("this server") - ) + scope=self.bot.user.display_name + if await bank.is_global() + else _("this server") ) )