From 425fb4045b22cccf56491e92c55953be4ac85b39 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Fri, 16 Aug 2024 17:06:43 -0400 Subject: [PATCH] chore: cleanup --- brownie/project/compiler/vyper.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/brownie/project/compiler/vyper.py b/brownie/project/compiler/vyper.py index c1d4c77fa..f75989d99 100644 --- a/brownie/project/compiler/vyper.py +++ b/brownie/project/compiler/vyper.py @@ -241,10 +241,6 @@ def compile_from_input_json( outputs.remove("userdoc") outputs.remove("devdoc") if version == Version(vyper.__version__): - #if False: - if allow_paths is not None: - pass - #raise NotImplementedError(allow_paths) try: return vyper_json.compile_json(input_json) except VyperException as exc: @@ -253,9 +249,6 @@ def compile_from_input_json( try: return vvm.compile_standard(input_json, base_path=allow_paths, vyper_version=str(version)) except vvm.exceptions.VyperError as exc: - print(version) - raise exc - #raise Exception(version, type(version), exc) raise CompilerError(exc, "vyper")