Skip to content

Commit 4b76199

Browse files
authored
Add comma separation to fork and stargazers count
1 parent fca7eb4 commit 4b76199

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bot/exts/utilities/githubinfo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,8 @@ def build_embed(self, repo_data: dict) -> discord.Embed:
358358

359359
embed.set_footer(
360360
text=(
361-
f"{repo_data['forks_count']} ⑂ "
362-
f"• {repo_data['stargazers_count']} ⭐ "
361+
f"{repo_data['forks_count']:,} ⑂ "
362+
f"• {repo_data['stargazers_count']:,} ⭐ "
363363
f"• Created At {repo_created_at} "
364364
f"• Last Commit {last_pushed}"
365365
)

0 commit comments

Comments
 (0)