We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 562b0cd commit e6ae8cdCopy full SHA for e6ae8cd
src/europython_discord/cogs/guild_statistics.py
@@ -37,7 +37,7 @@ async def list_participants(self, ctx: commands.Context) -> None:
37
# send message
38
lines = [f"{ctx.author.mention} Participant Statistics:"]
39
for role_name, count in role_counts.items():
40
- lines.append(f"* {count} {role_name}")
+ lines.append(f"* {count} {role_name.strip('<>@')}")
41
await ctx.send(content="\n".join(lines))
42
43
async def cog_check(self, ctx: commands.Context) -> bool:
0 commit comments