From b86a91882ff1e41faca652614abca237193bb787 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 15 Jan 2024 14:29:13 +0000 Subject: [PATCH] misc(aurora): added docstrings/modified docstrings for some of the config commands --- aurora/configuration/commands.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/aurora/configuration/commands.py b/aurora/configuration/commands.py index aa38832..41baf34 100644 --- a/aurora/configuration/commands.py +++ b/aurora/configuration/commands.py @@ -20,6 +20,7 @@ class Configuration(Mixin): @aurora_settings.command(name="core") async def aurora_settings_core(self, ctx: commands.Context): + """Manage Aurora's core settings.""" await ctx.send(embed=await embed(ctx)) @aurora_settings.command(name="addrole", aliases=["removerole"]) @@ -40,12 +41,12 @@ class Configuration(Mixin): @commands.admin() @commands.guild_only() async def aurora_import(self, ctx: commands.Context): - """Import moderations from other bots.""" + """Import moderation history from other bots.""" @aurora_import.command(name="aurora") @commands.admin() async def aurora_import_aurora(self, ctx: commands.Context): - """Import moderations from another bot using Aurora.""" + """Import moderation history from another bot using Aurora.""" if ( ctx.message.attachments and ctx.message.attachments[0].content_type @@ -63,7 +64,7 @@ class Configuration(Mixin): @aurora_import.command(name="galacticbot") @commands.admin() async def aurora_import_galacticbot(self, ctx: commands.Context): - """Import moderations from GalacticBot.""" + """Import moderation history from GalacticBot.""" if ( ctx.message.attachments and ctx.message.attachments[0].content_type