From d3ab83d7d10a06697fa0b764d11166fcfbd16cc6 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sun, 6 Jun 2021 15:54:14 +0530 Subject: removed assertion --- app/apis.py | 6 ++---- 1 file 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} -- cgit v1.2.3