Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pratik-vii authored and kclowes committed Oct 12, 2020
1 parent 6f746ad commit 7c0e93f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/ethpm/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
)
from web3 import Web3
from web3.tools import (
linker as l, # noqa: E741
linker,
)

V3_PACKAGE_NAMES = [
Expand Down Expand Up @@ -172,10 +172,10 @@ def manifest_with_empty_deployments(tmpdir, safe_math_manifest):
def escrow_package(deployer, w3, ethpm_spec_dir):
escrow_manifest = ethpm_spec_dir / "examples" / "escrow" / "v3.json"
escrow_deployer = deployer(escrow_manifest)
escrow_strategy = l.linker(
l.deploy("SafeSendLib"),
l.link("Escrow", "SafeSendLib"),
l.deploy("Escrow", w3.eth.accounts[0]),
escrow_strategy = linker.linker(
linker.deploy("SafeSendLib"),
linker.link("Escrow", "SafeSendLib"),
linker.deploy("Escrow", w3.eth.accounts[0]),
)
escrow_deployer.register_strategy("Escrow", escrow_strategy)
return escrow_deployer.deploy("Escrow")
Expand Down

0 comments on commit 7c0e93f

Please sign in to comment.