Skip to content

Commit

Permalink
fix: SyntaxError
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler committed Apr 8, 2024
1 parent dd1fe71 commit 938b0e8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions yearn/outputs/describers/vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ async def describe_wallets(self, vault_address, block=None):
wallet: {
"token balance": bal,
"usd balance": bal * price
} for wallet, bal in balances.items()
}
} for wallet, bal in balances.items()
}
}
info['active wallets'] = sum(1 if balances['usd balance'] > ACTIVE_WALLET_USD_THRESHOLD else 0 for balances in info['wallet balances'].values())
Expand Down

0 comments on commit 938b0e8

Please sign in to comment.