Skip to content

Commit

Permalink
fix type checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mendesfabio committed Dec 13, 2024
1 parent f7ae7de commit 07e8213
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integrations/balancer_v2_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,5 @@ def get_participants(

if __name__ == "__main__":
balancer = BalancerV2Integration(IntegrationID.BALANCER_FRAXTAL_FRAX_USDE)
participants = balancer.get_participants()
balances = balancer.get_balance(participants)
participants = balancer.get_participants(None)
balances = balancer.get_balance(participants[0])
2 changes: 1 addition & 1 deletion integrations/balancer_v3_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ def get_participants(
if __name__ == "__main__":
balancer = BalancerV3Integration(IntegrationID.BALANCER_V3_ETHEREUM_TESTING)
participants = balancer.get_participants(None)
balances = balancer.get_balance(participants)
balances = balancer.get_balance(participants[0])

0 comments on commit 07e8213

Please sign in to comment.