From 0aa4d305c75fc9c409ed3ff3a80c4cbfee8d52a9 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Tue, 2 Apr 2024 10:07:44 -0700 Subject: [PATCH] chore: print statement removed --- backend/utils/utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/utils/utils.py b/backend/utils/utils.py index 1c45258b1..49e15789f 100644 --- a/backend/utils/utils.py +++ b/backend/utils/utils.py @@ -77,8 +77,6 @@ def get_http_authorization_cred(auth_header: str): def get_current_user( auth_token: HTTPAuthorizationCredentials = Depends(bearer_security), ): - - print(auth_token) # auth by api key if auth_token.credentials.startswith("sk-"): return get_current_user_by_api_key(auth_token.credentials)