From 5cedd6dd87129b496ad13006de7cc5bfc0b19e63 Mon Sep 17 00:00:00 2001 From: Chris Marslender Date: Fri, 13 Oct 2023 16:13:48 -0500 Subject: [PATCH] Fix lint again --- tests/cli_clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli_clients.py b/tests/cli_clients.py index 0114000..35f31cb 100644 --- a/tests/cli_clients.py +++ b/tests/cli_clients.py @@ -42,7 +42,7 @@ def __init__(self, sim_client): self.sim_client = sim_client # These are the only two methods we need - async def select_coins(self, amount, wallet_id, max_coin_amount=uint64(2**64 - 1)) -> List[Coin]: + async def select_coins(self, amount, wallet_id, max_coin_amount=uint64(2 ** 64 - 1)) -> List[Coin]: return [ sorted( await self.sim_client.get_coin_records_by_puzzle_hashes([ACS_PH], include_spent_coins=False),