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 4cd0c7c..cf7fb9f 100644 --- a/app/apis.py +++ b/app/apis.py @@ -14,5 +14,5 @@ async def API_Version(): async def API_User_Details(email: str): user = models.User.query.filter_by(email=email).first() if user is None: - raise HTTPException(status_code=404,detail="User Not Found") + raise HTTPException(status_code=404, detail="User Not Found") return {"first_name": user.first_name, "last_name": user.last_name} |