From 846d95212c4a72d304b3ff0b49f2596bcab1aab7 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Fri, 16 Aug 2024 17:24:28 -0400 Subject: [PATCH] chore: cleanup --- brownie/project/compiler/vyper.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/brownie/project/compiler/vyper.py b/brownie/project/compiler/vyper.py index f75989d99..477cc9901 100644 --- a/brownie/project/compiler/vyper.py +++ b/brownie/project/compiler/vyper.py @@ -93,12 +93,7 @@ def _get_vyper_version_list() -> Tuple[List, List]: if not installed_versions: raise ConnectionError("Vyper not installed and cannot connect to GitHub") AVAILABLE_VYPER_VERSIONS = installed_versions - for v in installed_versions: - if '_version' not in v.__dict__: - print(v) - print(type(v)) - print(v.__dict__) - return AVAILABLE_VYPER_VERSIONS, [v if isinstance(v, Version) else Version(str(v)) for v in installed_versions] + return AVAILABLE_VYPER_VERSIONS, installed_versions def install_vyper(*versions: str) -> None: