We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5577323 commit 521d3bcCopy full SHA for 521d3bc
src/mcp/server/auth/routes.py
@@ -1,5 +1,4 @@
1
import posixpath
2
-
3
from collections.abc import Awaitable, Callable
4
from typing import Any
5
@@ -174,9 +173,7 @@ def append_path(base: str, suffix: str) -> str:
174
173
authorization_url = modify_url_path(
175
issuer_url, lambda path: append_path(path, AUTHORIZATION_PATH)
176
)
177
- token_url = modify_url_path(
178
- issuer_url, lambda path: append_path(path, TOKEN_PATH)
179
- )
+ token_url = modify_url_path(issuer_url, lambda path: append_path(path, TOKEN_PATH))
180
# Create metadata
181
metadata = OAuthMetadata(
182
issuer=issuer_url,
0 commit comments