Skip to content

Commit eedb718

Browse files
committed
undoing a fstring
1 parent f8a893b commit eedb718

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/client/test_jsonrpc_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ async def test_get_agent_card_success_with_specified_path_for_extended_card(
200200
http_kwargs=auth_kwargs,
201201
)
202202

203-
expected_extended_url = '{}/{}'.format(
204-
self.BASE_URL, self.EXTENDED_AGENT_CARD_PATH.lstrip('/')
203+
expected_extended_url = (
204+
f'{self.BASE_URL}/{self.EXTENDED_AGENT_CARD_PATH.lstrip("/")}'
205205
)
206206
mock_httpx_client.get.assert_called_once_with(
207207
expected_extended_url, **auth_kwargs

0 commit comments

Comments
 (0)