From d6dad6387a9c3998051e375480de78502f923ad7 Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Sat, 19 Oct 2024 11:00:42 -0400 Subject: [PATCH] fix API regression --- boa/interpret.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/boa/interpret.py b/boa/interpret.py index d5601bcb..a768c67e 100644 --- a/boa/interpret.py +++ b/boa/interpret.py @@ -34,7 +34,8 @@ from boa.explorer import Etherscan, get_etherscan from boa.rpc import json from boa.util.abi import Address -from boa.util.disk_cache import get_disk_cache +# export set_cache_dir, NOTE: consider moving to boa/__init__.py +from boa.util.disk_cache import get_disk_cache, set_cache_dir # noqa: F401 if TYPE_CHECKING: from vyper.semantics.analysis.base import ImportInfo