Compare commits

...

2 commits

Author SHA1 Message Date
0000bec73f
misc(shortmute): trimmed useless whitespace
All checks were successful
Pylint / Pylint (push) Successful in 1m10s
2023-09-27 13:59:35 -04:00
bc6f5bdfbe
fix(pylint): added too-many-return-statements to the disabled messages 2023-09-27 13:59:20 -04:00
2 changed files with 3 additions and 2 deletions

View file

@ -11,4 +11,5 @@
too-many-locals, too-many-locals,
too-many-public-methods, too-many-public-methods,
too-many-statements, too-many-statements,
arguments-differ arguments-differ,
too-many-return-statements

View file

@ -74,7 +74,7 @@ class Shortmute(commands.Cog):
if role in target.roles: if role in target.roles:
await interaction.response.send_message(content="You're trying to shortmute someone who is immune from shortmuting.", ephemeral=True) await interaction.response.send_message(content="You're trying to shortmute someone who is immune from shortmuting.", ephemeral=True)
return return
if target.guild_permissions.administrator is True: if target.guild_permissions.administrator is True:
await interaction.response.send_message(content="You cannot shortmute people with the Administrator permission!", ephemeral=True) await interaction.response.send_message(content="You cannot shortmute people with the Administrator permission!", ephemeral=True)
return return
if duration in (1, -1): if duration in (1, -1):