Skip to content

Commit

Permalink
fix: remove root_path kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Jul 11, 2024
1 parent ae22709 commit 5edb051
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion brownie/project/compiler/vyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,10 @@ def compile_from_input_json(
outputs.remove("userdoc")
outputs.remove("devdoc")
if version == Version(vyper.__version__):
if allow_paths is not None:
raise NotImplementedError(allow_paths)
try:
return vyper_json.compile_json(input_json, root_path=allow_paths)
return vyper_json.compile_json(input_json)
except VyperException as exc:
raise exc.with_traceback(None)
else:
Expand Down

0 comments on commit 5edb051

Please sign in to comment.