Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Aug 16, 2024
1 parent f2a339f commit 846d952
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions brownie/project/compiler/vyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 846d952

Please sign in to comment.