Skip to content

Commit a278c4d

Browse files
committed
Revert unwanted change
1 parent 2f12712 commit a278c4d

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

tests/client/test_client_factory.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,7 @@ def custom_transport_producer(*args, **kwargs):
258258
base_agent_card,
259259
client_config=config,
260260
extra_transports=typing.cast(
261-
'dict[str, TransportProducer]',
262-
{'custom': custom_transport_producer},
261+
dict[str, TransportProducer], {'custom': custom_transport_producer}
263262
),
264263
)
265264

tests/integration/test_client_server_integration.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ def agent_card() -> AgentCard:
155155
protocol_binding=TransportProtocol.HTTP_JSON,
156156
url='http://testserver',
157157
),
158-
AgentInterface(protocol_binding=TransportProtocol.GRPC, url='localhost:50051'),
158+
AgentInterface(
159+
protocol_binding=TransportProtocol.GRPC, url='localhost:50051'
160+
),
159161
],
160162
)
161163

0 commit comments

Comments
 (0)