Skip to content

Commit ba7ed57

Browse files
committed
Update security.py
1 parent 05e3755 commit ba7ed57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/web/security.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async def get_token_or_user_auth(
5959
async def get_user_auth(
6060
credentials: HTTPAuthorizationCredentials = Depends(bearer_security),
6161
):
62-
# validates the Bearer token in the case that it requires it
62+
# Validates the Bearer token in the case that it requires it
6363
valid_user, info = authenticate_user(credentials.credentials)
6464
if valid_user:
6565
return info.lower()

0 commit comments

Comments
 (0)