Skip to content

Commit

Permalink
fix: stringify versions
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Jul 11, 2024
1 parent b73b7eb commit 91b7bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brownie/project/compiler/vyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +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
return AVAILABLE_VYPER_VERSIONS, installed_versions
return AVAILABLE_VYPER_VERSIONS, [str(v) for v in installed_versions]


def install_vyper(*versions: str) -> None:
Expand Down

0 comments on commit 91b7bf6

Please sign in to comment.