aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/apis.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/app/apis.py b/app/apis.py
index 69bf222..4cd0c7c 100644
--- a/app/apis.py
+++ b/app/apis.py
@@ -13,8 +13,6 @@ async def API_Version():
@app.get("/v1/user-details")
async def API_User_Details(email: str):
user = models.User.query.filter_by(email=email).first()
- try:
- assert user is not None
- except AssertionError:
- raise HTTPException(status_code=404, detail="User Not Found")
+ if user is None:
+ raise HTTPException(status_code=404,detail="User Not Found")
return {"first_name": user.first_name, "last_name": user.last_name}