Skip to content

Commit 848f12c

Browse files
committed
fix lint
1 parent 62b5967 commit 848f12c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration_tests/test_staking_cache.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def test_staking_cache_multiple_unbonding(cronos_staking_cache):
8989
node_cli = cronos.cosmos_cli(node_idx)
9090
delegations = node_cli.get_delegated_amount(rich_addr)
9191
delegation_responses = (
92-
delegations.get('delegation_responses', [])
92+
delegations.get("delegation_responses", [])
9393
if delegations else []
9494
)
9595
count = len(delegation_responses)
@@ -655,7 +655,7 @@ def test_staking_cache_consistency(cronos_staking_cache):
655655
node_cli = cronos.cosmos_cli(node_idx)
656656
delegations = node_cli.get_delegated_amount(delegator_addr)
657657
delegation_responses = (
658-
delegations.get('delegation_responses', [])
658+
delegations.get("delegation_responses", [])
659659
if delegations else []
660660
)
661661
count = len(delegation_responses)

0 commit comments

Comments
 (0)