Skip to content

Commit 61e01a5

Browse files
committed
style: fix indentation
1 parent 9cb24f7 commit 61e01a5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/fixtures/coins.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,9 @@ def _deploy_wrapped(project, alice, pool_data, idx, underlying, aave_lending_poo
7070
symbol = coin_data.get("name", f"C{idx}")
7171

7272
if pool_data['wrapped_contract'] == "ATokenMock":
73-
contract = deployer.deploy(
74-
name, symbol, decimals, underlying, aave_lending_pool, {'from': alice})
73+
contract = deployer.deploy(name, symbol, decimals, underlying, aave_lending_pool, {'from': alice})
7574
else:
76-
contract = deployer.deploy(
77-
name, symbol, decimals, underlying, {'from': alice})
75+
contract = deployer.deploy(name, symbol, decimals, underlying, {'from': alice})
7876

7977
for target, attr in fn_names.items():
8078
if target != attr:

0 commit comments

Comments
 (0)