From d1109c402e0326a30cf65b73df3ecc1b20d0b01f Mon Sep 17 00:00:00 2001 From: Ammon Smith Date: Thu, 9 Apr 2020 02:22:30 -0400 Subject: [PATCH] Run black formatter. --- futaba/cogs/auth/core.py | 1 + futaba/cogs/moderation/core.py | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/futaba/cogs/auth/core.py b/futaba/cogs/auth/core.py index e10b4e8a..0544b5e7 100644 --- a/futaba/cogs/auth/core.py +++ b/futaba/cogs/auth/core.py @@ -26,6 +26,7 @@ __all__ = ["Authentication"] + class Authentication(AbstractCog): __slots__ = ("journal",) diff --git a/futaba/cogs/moderation/core.py b/futaba/cogs/moderation/core.py index 2d446cac..3fc9ce32 100644 --- a/futaba/cogs/moderation/core.py +++ b/futaba/cogs/moderation/core.py @@ -254,7 +254,9 @@ async def unjail(self, ctx, member: MemberConv, *, reason: str = None): logger.info("Un-jailing user '%s' (%d)", member.name, member.id) await self.perform_unjail(ctx, member, 0, reason) - @commands.command(name="dunjail", aliases=["dundunce", "timeunjail", "timeundunce", "drelease"]) + @commands.command( + name="dunjail", aliases=["dundunce", "timeunjail", "timeundunce", "drelease"], + ) @commands.guild_only() @permissions.check_perm("manage_roles") async def dunjail( @@ -272,7 +274,6 @@ async def dunjail( await self.perform_unjail(ctx, member, minutes, reason) - @commands.command(name="kick") @commands.guild_only() @permissions.check_perm("kick_members")