Skip to content

Commit e0ef6d9

Browse files
authored
Remove debug print for HTTP status error
1 parent d11b211 commit e0ef6d9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

firebase_admin/_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,6 @@ def handle_httpx_error(error: httpx.HTTPError, message=None, code=None) -> excep
279279
message=f'Failed to establish a connection: {error}',
280280
cause=error)
281281
if isinstance(error, httpx.HTTPStatusError):
282-
print("printing status error", error)
283282
if not code:
284283
code = _http_status_to_error_code(error.response.status_code)
285284
if not message:

0 commit comments

Comments
 (0)