From 41de2dc4332f5a86a0508de397bd154b3485c651 Mon Sep 17 00:00:00 2001 From: Manish <88748362+mnshai@users.noreply.github.com> Date: Mon, 3 Mar 2025 14:50:18 +0530 Subject: [PATCH] refactor: remove debug print statement --- fastapi/security/http.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fastapi/security/http.py b/fastapi/security/http.py index 9f17a600e..d9de1f0d7 100644 --- a/fastapi/security/http.py +++ b/fastapi/security/http.py @@ -87,7 +87,6 @@ class HTTPBase(SecurityBase): scheme, credentials = get_authorization_scheme_param(authorization) if not (authorization and scheme and credentials): if self.auto_error: - print(scheme) raise HTTPException( status_code=HTTP_401_UNAUTHORIZED, detail="Not authenticated",