diff --git a/src/sr/discord_bot/commands/stats.py b/src/sr/discord_bot/commands/stats.py index 4b0c87b..4107e53 100644 --- a/src/sr/discord_bot/commands/stats.py +++ b/src/sr/discord_bot/commands/stats.py @@ -39,7 +39,8 @@ def __eq__(self, comp: object) -> bool: @app_commands.guild_only() @app_commands.default_permissions() class Stats(app_commands.Group): - pass + def __init__(self) -> None: + super().__init__(description="Posts team member statistics") @app_commands.command(name='post') # type:ignore[arg-type]