aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2020-06-16 12:48:13 -0700
committerGravatar MarkKoz <[email protected]>2020-06-16 13:09:28 -0700
commit20a8b6fe92c398fdc246d78591600bb7bde78bca (patch)
tree865c5e24392afc876c7c6dcef146f8de2ed9e7f0
parentAdd optional type annotations to reason in pardon funcs (diff)
Format parameters with a more consistent style
-rw-r--r--bot/cogs/moderation/infractions.py38
1 files changed, 19 insertions, 19 deletions
diff --git a/bot/cogs/moderation/infractions.py b/bot/cogs/moderation/infractions.py
index f7747e7f8..3b28526b2 100644
--- a/bot/cogs/moderation/infractions.py
+++ b/bot/cogs/moderation/infractions.py
@@ -75,9 +75,7 @@ class Infractions(InfractionScheduler, commands.Cog):
# region: Temporary infractions
@command(aliases=["mute"])
- async def tempmute(
- self, ctx: Context, user: Member, duration: Expiry, *, reason: t.Optional[str] = None
- ) -> None:
+ async def tempmute(self, ctx: Context, user: Member, duration: Expiry, *, reason: t.Optional[str] = None) -> None:
"""
Temporarily mute a user for the given reason and duration.
@@ -97,7 +95,12 @@ class Infractions(InfractionScheduler, commands.Cog):
@command()
async def tempban(
- self, ctx: Context, user: FetchedMember, duration: Expiry, *, reason: t.Optional[str] = None
+ self,
+ ctx: Context,
+ user: FetchedMember,
+ duration: Expiry,
+ *,
+ reason: t.Optional[str] = None
) -> None:
"""
Temporarily ban a user for the given reason and duration.
@@ -134,9 +137,7 @@ class Infractions(InfractionScheduler, commands.Cog):
await self.apply_kick(ctx, user, reason, hidden=True, active=False)
@command(hidden=True, aliases=['shadowban', 'sban'])
- async def shadow_ban(
- self, ctx: Context, user: FetchedMember, *, reason: t.Optional[str] = None
- ) -> None:
+ async def shadow_ban(self, ctx: Context, user: FetchedMember, *, reason: t.Optional[str] = None) -> None:
"""Permanently ban a user for the given reason without notifying the user."""
await self.apply_ban(ctx, user, reason, hidden=True)
@@ -145,12 +146,11 @@ class Infractions(InfractionScheduler, commands.Cog):
@command(hidden=True, aliases=["shadowtempmute, stempmute", "shadowmute", "smute"])
async def shadow_tempmute(
- self,
- ctx: Context,
- user: Member,
- duration: Expiry,
- *,
- reason: t.Optional[str] = None
+ self, ctx: Context,
+ user: Member,
+ duration: Expiry,
+ *,
+ reason: t.Optional[str] = None
) -> None:
"""
Temporarily mute a user for the given reason and duration without notifying the user.
@@ -171,12 +171,12 @@ class Infractions(InfractionScheduler, commands.Cog):
@command(hidden=True, aliases=["shadowtempban, stempban"])
async def shadow_tempban(
- self,
- ctx: Context,
- user: FetchedMember,
- duration: Expiry,
- *,
- reason: t.Optional[str] = None
+ self,
+ ctx: Context,
+ user: FetchedMember,
+ duration: Expiry,
+ *,
+ reason: t.Optional[str] = None
) -> None:
"""
Temporarily ban a user for the given reason and duration without notifying the user.