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 29aa1e4 commit 304160dCopy full SHA for 304160d
src/agents/mcp/util.py
@@ -31,9 +31,9 @@ class HttpClientFactory(Protocol):
31
32
def __call__(
33
self,
34
- headers: dict[str, str] | None = None,
35
- timeout: httpx.Timeout | None = None,
36
- auth: httpx.Auth | None = None,
+ headers: Optional[dict[str, str]] = None,
+ timeout: Optional[httpx.Timeout] = None,
+ auth: Optional[httpx.Auth] = None,
37
) -> httpx.AsyncClient: ...
38
39
0 commit comments