Spaces:
Running
Running
Jeremiah Lowin commited on
Commit ·
d475f25
1
Parent(s): c04707c
prevent double passing of client info
Browse files
src/fastmcp/client/transports.py
CHANGED
|
@@ -687,7 +687,6 @@ class FastMCPTransport(ClientTransport):
|
|
| 687 |
read_stream=client_read,
|
| 688 |
write_stream=client_write,
|
| 689 |
**session_kwargs,
|
| 690 |
-
client_info=session_kwargs.get("client_info"),
|
| 691 |
) as client_session:
|
| 692 |
yield client_session
|
| 693 |
finally:
|
|
|
|
| 687 |
read_stream=client_read,
|
| 688 |
write_stream=client_write,
|
| 689 |
**session_kwargs,
|
|
|
|
| 690 |
) as client_session:
|
| 691 |
yield client_session
|
| 692 |
finally:
|