From 431e621e607376bce473ebe6139e6d3c51edfcbe Mon Sep 17 00:00:00 2001 From: Fran Date: Sun, 3 Nov 2024 01:37:41 -0500 Subject: [PATCH] fix: Add username variable --- sources/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/main.py b/sources/main.py index 54db84e..a507e9b 100644 --- a/sources/main.py +++ b/sources/main.py @@ -88,7 +88,7 @@ async def get_short_github_info() -> str: data = GHM.USER.get_followers() for user in data: username = user.login.replace("-", "--") - stats += f"![@{user.login}](https://img.shields.io/badge/@{user.login}-black?style=plastic&logo=github&logoColor=fff&link={user.html_url})" + stats += f"![@{username}](https://img.shields.io/badge/@{username}-black?style=plastic&logo=github&logoColor=fff&link={user.html_url})" stats += f"\nIf you follow my account you can appear on this list. *This list updates every 12h*\n\n" DBM.i("Adding short GitHub info...")