Skip to content

Commit 304160d

Browse files
author
Your Name
committed
fix old_tests types
1 parent 29aa1e4 commit 304160d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/agents/mcp/util.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ class HttpClientFactory(Protocol):
3131

3232
def __call__(
3333
self,
34-
headers: dict[str, str] | None = None,
35-
timeout: httpx.Timeout | None = None,
36-
auth: httpx.Auth | None = None,
34+
headers: Optional[dict[str, str]] = None,
35+
timeout: Optional[httpx.Timeout] = None,
36+
auth: Optional[httpx.Auth] = None,
3737
) -> httpx.AsyncClient: ...
3838

3939

0 commit comments

Comments
 (0)