Skip to content

Commit

Permalink
chore: print stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Jul 11, 2024
1 parent 91b7bf6 commit 1d73e20
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion brownie/project/compiler/vyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1d73e20

Please sign in to comment.