From ba7ed5727cdf2e6c880bd8b09520c37acb23d4b2 Mon Sep 17 00:00:00 2001 From: michplunkett <5885605+michplunkett@users.noreply.github.com> Date: Fri, 14 Mar 2025 22:49:26 -0500 Subject: [PATCH] Update security.py --- app/web/security.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/web/security.py b/app/web/security.py index 5850ad3..ecb0111 100644 --- a/app/web/security.py +++ b/app/web/security.py @@ -59,7 +59,7 @@ async def get_token_or_user_auth( async def get_user_auth( credentials: HTTPAuthorizationCredentials = Depends(bearer_security), ): - # validates the Bearer token in the case that it requires it + # Validates the Bearer token in the case that it requires it valid_user, info = authenticate_user(credentials.credentials) if valid_user: return info.lower()