From 1d73e2043f05ceee6998cca6f3872a7dca4a1cae Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Thu, 11 Jul 2024 15:26:55 -0400 Subject: [PATCH] chore: print stuff --- brownie/project/compiler/vyper.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/brownie/project/compiler/vyper.py b/brownie/project/compiler/vyper.py index d83667457..777a6c6e9 100644 --- a/brownie/project/compiler/vyper.py +++ b/brownie/project/compiler/vyper.py @@ -93,7 +93,10 @@ 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 - return AVAILABLE_VYPER_VERSIONS, [str(v) for v in installed_versions] + for v in installed_versions: + print(v) + print(type(v)) + return AVAILABLE_VYPER_VERSIONS, installed_versions def install_vyper(*versions: str) -> None: