Skip to content

Commit

Permalink
removed print
Browse files Browse the repository at this point in the history
  • Loading branch information
NishantBorthakur committed Jun 7, 2023
1 parent 4342e7a commit 9ac61bf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ def create_access_token(email,Authorize: AuthJWT = Depends()):
# expiry_time_hours = get_config("JWT_EXPIRY")
expiry_time_hours = 1
expires = timedelta(hours=expiry_time_hours)
print("EMAIL : ",email)
access_token = Authorize.create_access_token(subject=email,expires_time=expires)
return access_token

Expand Down

0 comments on commit 9ac61bf

Please sign in to comment.