Skip to content

Commit

Permalink
fix a bad import
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Dec 7, 2023
1 parent 04e7ac6 commit 03949fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion boa/interpret.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from boa.environment import Address
from boa.explorer import fetch_abi_from_etherscan
from boa.util.disk_cache import DiskCache
from boa.vyper.compiler_utils import anchor_compiler_settings
from boa.vyper.contract import (
ABIContractFactory,
BoaError,
Expand Down Expand Up @@ -50,7 +51,7 @@ def _ifaces():
def func():
ifaces = _ifaces()
ret = CompilerData(source_code, contract_name, interface_codes=ifaces, **kwargs)
with anchor_compiler_settings(ret)
with anchor_compiler_settings(ret):
_ = ret.bytecode, ret.bytecode_runtime # force compilation to happen
return ret

Expand Down

0 comments on commit 03949fe

Please sign in to comment.