Skip to content

Commit

Permalink
Run black formatter.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ammon Smith committed Apr 9, 2020
1 parent b0d748b commit d1109c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions futaba/cogs/auth/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

__all__ = ["Authentication"]


class Authentication(AbstractCog):
__slots__ = ("journal",)

Expand Down
5 changes: 3 additions & 2 deletions futaba/cogs/moderation/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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")
Expand Down

0 comments on commit d1109c4

Please sign in to comment.