style(mcp): black format mcp_server_manager.py

This commit is contained in:
Ishaan Jaffer 2026-05-01 12:11:57 -07:00
parent 73313c600f
commit dfece13cdd
No known key found for this signature in database

View file

@ -780,13 +780,9 @@ class MCPServerManager:
if credentials_dict
else None
),
audience=(
credentials_dict.get("audience") if credentials_dict else None
),
audience=(credentials_dict.get("audience") if credentials_dict else None),
subject_token_type=(
credentials_dict.get("subject_token_type")
if credentials_dict
else None
credentials_dict.get("subject_token_type") if credentials_dict else None
)
or "urn:ietf:params:oauth:token-type:access_token",
)
@ -1179,7 +1175,7 @@ class MCPServerManager:
auth_value = normalized.get("authorization")
if auth_value:
if auth_value.startswith("Bearer "):
return auth_value[len("Bearer "):]
return auth_value[len("Bearer ") :]
return auth_value
return None