File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ async def update_channels(bot: Bot) -> None:
3737 member_channel = bot .cache .get_guild_channel (CONFIG .member_count_channel )
3838
3939 if sub_channel :
40- await sub_channel .edit (name = f"Subs: { display_stats (stats .subs )} " )
40+ await sub_channel .edit (name = f"{ display_stats (stats .subs )} subs " )
4141 else :
4242 LOGGER .warning ("No sub count channel to update stats for." )
4343
4444 if view_channel :
45- await view_channel .edit (name = f"Views: { display_stats (stats .views )} " )
45+ await view_channel .edit (name = f"{ display_stats (stats .views )} views " )
4646 else :
4747 LOGGER .warning ("No view count channel to update stats for." )
4848
@@ -65,7 +65,7 @@ async def update_channels(bot: Bot) -> None:
6565 # never updated after the bot first starts.
6666 member_count = max (guild_approx_members , cached_members )
6767
68- await member_channel .edit (name = f"Members: { display_stats (member_count )} " )
68+ await member_channel .edit (name = f"{ display_stats (member_count )} members " )
6969
7070
7171@dataclass
You can’t perform that action at this time.
0 commit comments