Description for admin stop command, empty line at EOF.

This commit is contained in:
Uwe Pfeifer 2022-11-12 16:26:18 +01:00
parent 0180755b1f
commit 1c7f2a0295

View file

@ -12,7 +12,7 @@ class AdminExt(commands.GroupCog, name="admin"):
self.bot = bot
super().__init__() # this is now required in this context.
@app_commands.command(name="stop")
@app_commands.command(name="stop", description="Stops (shuts down) the bot")
@commands.is_owner()
async def admin_stop(self, interaction: discord.Interaction) -> None:
""" /admin stop """
@ -21,4 +21,4 @@ class AdminExt(commands.GroupCog, name="admin"):
async def setup(bot: commands.Bot) -> None:
await bot.add_cog(AdminExt(bot))
await bot.add_cog(AdminExt(bot))