fix: more docstring shortening

This commit is contained in:
Seaswimmer 2023-08-08 02:39:40 -04:00
parent bb3d0c8bc0
commit 366628c37a
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -189,7 +189,7 @@ class Shortmute(commands.Cog):
@commands.guild_only() @commands.guild_only()
@commands.admin() @commands.admin()
async def shortmute_config_channel_add(self, ctx: commands.Context, channel: discord.TextChannel = None): async def shortmute_config_channel_add(self, ctx: commands.Context, channel: discord.TextChannel = None):
"""Adds a channel to the /shortmute logging channels list.""" """Adds a channel to the logging channels list."""
current_list = await self.config.guild(ctx.guild).logging_channels() current_list = await self.config.guild(ctx.guild).logging_channels()
if channel: if channel:
if channel.id in current_list: if channel.id in current_list:
@ -206,7 +206,7 @@ class Shortmute(commands.Cog):
@commands.guild_only() @commands.guild_only()
@commands.admin() @commands.admin()
async def shortmute_config_channel_remove(self, ctx: commands.Context, channel: discord.TextChannel = None): async def shortmute_config_channel_remove(self, ctx: commands.Context, channel: discord.TextChannel = None):
"""Removes a channel from the /shortmute logging channels list.""" """Removes a channel from the logging channels list."""
current_list = await self.config.guild(ctx.guild).logging_channels() current_list = await self.config.guild(ctx.guild).logging_channels()
if channel.id in current_list: if channel.id in current_list:
current_list.remove(channel.id) current_list.remove(channel.id)
@ -235,7 +235,7 @@ class Shortmute(commands.Cog):
@commands.guild_only() @commands.guild_only()
@commands.admin() @commands.admin()
async def shortmute_config_role_add(self, ctx: commands.Context, role: discord.Role = None): async def shortmute_config_role_add(self, ctx: commands.Context, role: discord.Role = None):
"""Adds roles to the /shortmute immune roles list.""" """Adds roles to the /shortmute immune roles."""
current_list = await self.config.guild(ctx.guild).immune_roles() current_list = await self.config.guild(ctx.guild).immune_roles()
if role: if role:
if role.id in current_list: if role.id in current_list:
@ -252,7 +252,7 @@ class Shortmute(commands.Cog):
@commands.guild_only() @commands.guild_only()
@commands.admin() @commands.admin()
async def shortmute_config_role_remove(self, ctx: commands.Context, role: discord.Role = None): async def shortmute_config_role_remove(self, ctx: commands.Context, role: discord.Role = None):
"""Removes roles from the /shortmute immune roles list.""" """Removes roles from the /shortmute immune roles."""
current_list = await self.config.guild(ctx.guild).immune_roles() current_list = await self.config.guild(ctx.guild).immune_roles()
if role.id in current_list: if role.id in current_list:
current_list.remove(role.id) current_list.remove(role.id)