Skip to content

Commit 1a4f1b3

Browse files
authored
Fix formatting in auth.py for grant_types list
1 parent 037f052 commit 1a4f1b3

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
# this implementation only supports code; ie: it does not support implicit grants
5555
response_types: list[Literal["code"]] = ["code"]

0 commit comments

Comments
 (0)