Skip to content

Commit 3e8db62

Browse files
committed
style: fix indentation
1 parent 7c3e619 commit 3e8db62

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/fixtures/coins.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,10 @@ def _deploy_wrapped(project, alice, pool_data, idx, underlying, aave_lending_poo
6565
name = coin_data.get("name", f"Coin {idx}")
6666
symbol = coin_data.get("name", f"C{idx}")
6767

68-
if pool_data["wrapped_contract"] == "ATokenMock":
69-
contract = deployer.deploy(
70-
name, symbol, decimals, underlying, aave_lending_pool, {"from": alice}
71-
)
68+
if pool_data['wrapped_contract'] == "ATokenMock":
69+
contract = deployer.deploy(name, symbol, decimals, underlying, aave_lending_pool, {'from': alice})
7270
else:
73-
contract = deployer.deploy(name, symbol, decimals, underlying, {"from": alice})
71+
contract = deployer.deploy(name, symbol, decimals, underlying, {'from': alice})
7472

7573
for target, attr in fn_names.items():
7674
if target != attr:

0 commit comments

Comments
 (0)