Skip to content

Commit c1ee0d1

Browse files
committed
style: Correct linting
1 parent 0338613 commit c1ee0d1

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

tests/fixtures/coins.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,12 @@ 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(name, symbol, decimals, underlying, aave_lending_pool, {'from': alice})
68+
if pool_data["wrapped_contract"] == "ATokenMock":
69+
contract = deployer.deploy(
70+
name, symbol, decimals, underlying, aave_lending_pool, {"from": alice}
71+
)
7072
else:
71-
contract = deployer.deploy(name, symbol, decimals, underlying, {'from': alice})
73+
contract = deployer.deploy(name, symbol, decimals, underlying, {"from": alice})
7274

7375
for target, attr in fn_names.items():
7476
if target != attr:

tests/pools/common/integration/test_curve.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import pytest
55
from brownie.test import given, strategy
66
from hypothesis import settings
7-
87
from simulation import Curve
98

109
pytestmark = [

0 commit comments

Comments
 (0)