Skip to content

Commit 521d3bc

Browse files
committed
fix lint
1 parent 5577323 commit 521d3bc

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/mcp/server/auth/routes.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import posixpath
2-
32
from collections.abc import Awaitable, Callable
43
from typing import Any
54

@@ -174,9 +173,7 @@ def append_path(base: str, suffix: str) -> str:
174173
authorization_url = modify_url_path(
175174
issuer_url, lambda path: append_path(path, AUTHORIZATION_PATH)
176175
)
177-
token_url = modify_url_path(
178-
issuer_url, lambda path: append_path(path, TOKEN_PATH)
179-
)
176+
token_url = modify_url_path(issuer_url, lambda path: append_path(path, TOKEN_PATH))
180177
# Create metadata
181178
metadata = OAuthMetadata(
182179
issuer=issuer_url,

0 commit comments

Comments
 (0)