Skip to content

Commit

Permalink
Merge pull request #14 from AlfrinP/dev
Browse files Browse the repository at this point in the history
fix: fixed the profile url f string formate
  • Loading branch information
Kochouseph26John authored Aug 2, 2024
2 parents 7777e0f + 13a16dd commit 36a581b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def fetch_queries(muid):
data = {
"muid": f"{user_data[0][1]}",
"name": f"{user_data[0][2]}",
"profile_pic": f"{decouple_config("BASE_URL")/{user_data[0][0]}.png}",
"profile_pic": f"{decouple_config('BASE_URL')}/{user_data[0][0]}.png",
"karma": str(user_data[0][4]),
"github_username": user_data[0][6],
"org_code": list(set([row[7] for row in user_data if row[7]])),
Expand Down

0 comments on commit 36a581b

Please sign in to comment.