diff options
Diffstat (limited to 'app/apis.py')
-rw-r--r-- | app/apis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/apis.py b/app/apis.py index b81882e..69bf222 100644 --- a/app/apis.py +++ b/app/apis.py @@ -14,7 +14,7 @@ async def API_Version(): async def API_User_Details(email: str): user = models.User.query.filter_by(email=email).first() try: - assert user != None + assert user is not None except AssertionError: raise HTTPException(status_code=404, detail="User Not Found") return {"first_name": user.first_name, "last_name": user.last_name} |