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 9306b75 commit 569a362
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions brownie/project/compiler/vyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,10 @@ def _get_vyper_version_list() -> Tuple[List, List]:
raise ConnectionError("Vyper not installed and cannot connect to GitHub")
AVAILABLE_VYPER_VERSIONS = installed_versions
for v in installed_versions:
print(v)
print(type(v))
print(v.__dict__)
print(v._version)
print(type(v._version))
if '_version' not in v.__dict__:
print(v)
print(type(v))
print(v.__dict__)
return AVAILABLE_VYPER_VERSIONS, [v._version for v in installed_versions]


Expand Down

0 comments on commit 569a362

Please sign in to comment.