diff --git a/src/europython_discord/cogs/guild_statistics.py b/src/europython_discord/cogs/guild_statistics.py index e6a84060..e144af0a 100644 --- a/src/europython_discord/cogs/guild_statistics.py +++ b/src/europython_discord/cogs/guild_statistics.py @@ -38,7 +38,7 @@ async def list_participants(self, ctx: commands.Context) -> None: lines = [f"{ctx.author.mention} Participant Statistics:"] for role_name, count in role_counts.items(): lines.append(f"* {count} {role_name}") - await ctx.send(content="\n".join(lines), delete_after=5) + await ctx.send(content="\n".join(lines)) async def cog_check(self, ctx: commands.Context) -> bool: """Check if the requested command shall be executed."""