Skip to content

Commit 744134e

Browse files
committed
Fix formatting in auth.py for grant_types list
1 parent 8eabbdb commit 744134e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcp/shared/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class OAuthClientMetadata(BaseModel):
4949
# grant_types: this implementation only supports authorization_code & refresh_token
5050
grant_types: list[Union[Literal["authorization_code", "refresh_token"], str]] = [
5151
"authorization_code",
52-
"refresh_token"
52+
"refresh_token",
5353
]
5454
# The MCP spec requires the "code" response type, but OAuth
5555
# servers may also return additional types they support

0 commit comments

Comments
 (0)