Skip to content

Commit

Permalink
Update vyper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Jul 11, 2024
1 parent c57ae76 commit 5c9a9f5
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 @@ -98,7 +98,7 @@ def _get_vyper_version_list() -> Tuple[List, List]:
print(v)
print(type(v))
print(v.__dict__)
return AVAILABLE_VYPER_VERSIONS, [v if isinstance(v, Version) else Version(v) for v in installed_versions]
return AVAILABLE_VYPER_VERSIONS, [v if isinstance(v, Version) else Version(str(v)) for v in installed_versions]


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

0 comments on commit 5c9a9f5

Please sign in to comment.