Skip to content

Commit 77e8718

Browse files
committed
Enforce black code style
1 parent 9756425 commit 77e8718

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cogs/utility.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ async def send_bot_help(self, cogs):
8585
cogs = list(filter(None, cogs))
8686

8787
bot = self.context.bot
88-
88+
8989
# always come first
90-
default_cogs = [
90+
default_cogs = [
9191
bot.get_cog("Modmail"),
9292
bot.get_cog("Utility"),
9393
bot.get_cog("Plugins"),
9494
]
95-
95+
9696
default_cogs.extend(c for c in cogs if c not in default_cogs)
9797

9898
for cog in default_cogs:
@@ -404,7 +404,7 @@ async def debug_clear(self, ctx):
404404
color=self.bot.main_color, description="Cached logs are now cleared."
405405
)
406406
)
407-
407+
408408
@commands.command(aliases=["presence"])
409409
@checks.has_permissions(PermissionLevel.ADMINISTRATOR)
410410
async def activity(self, ctx, activity_type: str.lower, *, message: str = ""):

core/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ async def wrapper(self, ctx: commands.Context, *args, **kwargs):
1010
await ctx.trigger_typing()
1111
return await func(self, ctx, *args, **kwargs)
1212

13-
return wrapper
13+
return wrapper

0 commit comments

Comments
 (0)