Skip to content

Commit

Permalink
fix an f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Feb 18, 2024
1 parent cf58fd4 commit b34d96c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boa/contracts/vyper/vyper_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def _dealias(self, maybe_address):
def _decode(mem, typ):
ret = decode_vyper_object(mem, typ)
if isinstance(typ, AddressT):
return f"address \"self._dealias(ret)\""
return f"address \"{self._dealias(ret)}\""
return ret

@cached_property
Expand Down

0 comments on commit b34d96c

Please sign in to comment.