From 8fce5fa25362ef4e3a095d9ee339ff6cd92acf09 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Fri, 16 Aug 2024 17:11:34 -0400 Subject: [PATCH] revert kwarg removal --- brownie/project/compiler/vyper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brownie/project/compiler/vyper.py b/brownie/project/compiler/vyper.py index f75989d99..c774e5c17 100644 --- a/brownie/project/compiler/vyper.py +++ b/brownie/project/compiler/vyper.py @@ -242,7 +242,7 @@ def compile_from_input_json( outputs.remove("devdoc") if version == Version(vyper.__version__): try: - return vyper_json.compile_json(input_json) + return vyper_json.compile_json(input_json, root_path=allow_paths) except VyperException as exc: raise exc.with_traceback(None) else: