Skip to content

Commit

Permalink
fix code quality check
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaan-jaff committed Nov 7, 2024
1 parent c6da749 commit 9cb0251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litellm/proxy/auth/auth_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ async def get_key_object(
return _response
except httpx.ConnectError as e:
return await _handle_failed_db_connection_for_get_key_object(e=e)
except Exception as e:
except Exception:
raise Exception(
f"Key doesn't exist in db. key={hashed_token}. Create key via `/key/generate` call."
)
Expand Down

0 comments on commit 9cb0251

Please sign in to comment.