Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
Β·
bc3cbae
1
Parent(s):
bbaa7d3
Update utils.py
Browse files- Powers/plugins/utils.py +4 -4
Powers/plugins/utils.py
CHANGED
|
@@ -214,14 +214,14 @@ async def github(_, m: Message):
|
|
| 214 |
updated_at = r.get("updated_at", "Not Found")
|
| 215 |
blog = r.get("blog", None)
|
| 216 |
twitter = r.get("twitter_username", None)
|
| 217 |
-
|
| 218 |
-
REPLY =
|
| 219 |
if name:
|
| 220 |
-
REPLY += f"
|
| 221 |
if bio:
|
| 222 |
REPLY += f"<b>π― Bio:</b> <code>{bio}</code>\n"
|
| 223 |
if url:
|
| 224 |
-
REPLY += f"<b>π URL:</b> <a href='{url}'>{
|
| 225 |
REPLY += f"<b>π Public Repos:</b> {public_repos}\n"
|
| 226 |
REPLY += f"<b>π§² Followers:</b> {followers}\n"
|
| 227 |
REPLY += f"<b>β¨ Following:</b> {following}\n"
|
|
|
|
| 214 |
updated_at = r.get("updated_at", "Not Found")
|
| 215 |
blog = r.get("blog", None)
|
| 216 |
twitter = r.get("twitter_username", None)
|
| 217 |
+
|
| 218 |
+
REPLY = ""
|
| 219 |
if name:
|
| 220 |
+
REPLY += f"<b>π§βπ» GitHub Info of {name}:</b>\n"
|
| 221 |
if bio:
|
| 222 |
REPLY += f"<b>π― Bio:</b> <code>{bio}</code>\n"
|
| 223 |
if url:
|
| 224 |
+
REPLY += f"<b>π URL:</b> <a href='{url}'>{username}</a>\n"
|
| 225 |
REPLY += f"<b>π Public Repos:</b> {public_repos}\n"
|
| 226 |
REPLY += f"<b>π§² Followers:</b> {followers}\n"
|
| 227 |
REPLY += f"<b>β¨ Following:</b> {following}\n"
|