Skip to content

Commit 556eebd

Browse files
committed
Fix type checking issue
1 parent 8e210ac commit 556eebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcp/client/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ async def async_auth_flow(self, request: httpx.Request) -> AsyncGenerator[httpx.
570570
token_request = await self._exchange_token(auth_code, code_verifier)
571571
token_response = yield token_request
572572
await self._handle_token_response(token_response)
573-
except Exception as e:
573+
except Exception:
574574
logger.exception("OAuth flow error")
575575
raise
576576

0 commit comments

Comments
 (0)