fix(chalice): replaced ’ with ' (#2109)

This commit is contained in:
Kraiem Taha Yassine 2024-04-19 15:09:19 +02:00 committed by GitHub
parent 0228e6cadb
commit ed6b24b26b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ def login_user(response: JSONResponse, data: schemas.UserLoginSchema = Body(...)
if r is None:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Youve entered invalid Email or Password."
detail="You've entered invalid Email or Password."
)
if "errors" in r:
raise HTTPException(

View file

@ -63,7 +63,7 @@ def login_user(response: JSONResponse, data: schemas.UserLoginSchema = Body(...)
if r is None:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Youve entered invalid Email or Password."
detail="You've entered invalid Email or Password."
)
if "errors" in r:
raise HTTPException(