Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1041,13 +1041,12 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
|
|
1041 |
"name": name,
|
1042 |
"email": email
|
1043 |
})
|
1044 |
-
|
1045 |
-
print("POINTSSSSS:", points)
|
1046 |
|
1047 |
if points.status_code == 200:
|
1048 |
point_data = points.json()
|
1049 |
try:
|
1050 |
userPoints = point_data["points"]
|
|
|
1051 |
return f"User: {name}'s Total points is: {userPoints}'"
|
1052 |
except:
|
1053 |
return "Error Occured while retrieving user points. Please try again. "
|
|
|
1041 |
"name": name,
|
1042 |
"email": email
|
1043 |
})
|
|
|
|
|
1044 |
|
1045 |
if points.status_code == 200:
|
1046 |
point_data = points.json()
|
1047 |
try:
|
1048 |
userPoints = point_data["points"]
|
1049 |
+
print("POINTSSSSS:", points)
|
1050 |
return f"User: {name}'s Total points is: {userPoints}'"
|
1051 |
except:
|
1052 |
return "Error Occured while retrieving user points. Please try again. "
|