We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a7192a commit bbd1ebdCopy full SHA for bbd1ebd
src/fastmcp/client/client.py
@@ -70,7 +70,6 @@
70
PythonStdioTransport,
71
SessionKwargs,
72
SSETransport,
73
- StdioTransport,
74
StreamableHttpTransport,
75
infer_transport,
76
)
tests/client/client/test_client.py
@@ -774,7 +774,7 @@ def test_client_new_resets_mutable_task_state(fastmcp_server):
774
"""Client.new() should not share mutable task tracking structures."""
775
client = Client(transport=FastMCPTransport(fastmcp_server))
776
777
- client._task_registry["task-1"] = lambda: None # type: ignore[assignment]
+ client._task_registry["task-1"] = lambda: None # type: ignore[assignment] # ty:ignore[invalid-assignment]
778
client._submitted_task_ids.add("task-1")
779
780
clone = client.new()
0 commit comments