From 9cc686b5b3c1a212db03c7512498c5eb33fcc358 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Wed, 11 Dec 2024 15:32:55 -0500 Subject: [PATCH] hmm --- chia/_tests/cmds/cmd_test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chia/_tests/cmds/cmd_test_utils.py b/chia/_tests/cmds/cmd_test_utils.py index 57296e9daf50..68fbb5e88a2f 100644 --- a/chia/_tests/cmds/cmd_test_utils.py +++ b/chia/_tests/cmds/cmd_test_utils.py @@ -409,9 +409,9 @@ async def test_get_any_service_client( @asynccontextmanager async def test_get_wallet_client( + root_path: Path = default_root, wallet_rpc_port: Optional[int] = None, fingerprint: Optional[int] = None, - root_path: Path = default_root, ) -> AsyncIterator[tuple[WalletRpcClient, int, dict[str, Any]]]: async with test_get_any_service_client(WalletRpcClient, wallet_rpc_port, root_path) as (wallet_client, config): wallet_client.fingerprint = fingerprint # type: ignore