Skip to content

Commit

Permalink
Fix lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
cmmarslender committed Oct 13, 2023
1 parent 16e1575 commit 5cedd6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli_clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 5cedd6d

Please sign in to comment.