From 03949fe9e3b1c15b8d88dd169b4f5e44fb64fae0 Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Thu, 7 Dec 2023 13:35:35 -0500 Subject: [PATCH] fix a bad import --- boa/interpret.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/boa/interpret.py b/boa/interpret.py index 95006936..2c076ff9 100644 --- a/boa/interpret.py +++ b/boa/interpret.py @@ -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, @@ -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