Skip to content

Commit

Permalink
fix: rhs type for tuple assign
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Apr 7, 2020
1 parent 6221a8e commit c9f935d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/parser/parser_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ def make_setter(left, right, location, pos, in_function_call=False):
for key, loc in zip(keyz, locations):
subs.append(make_setter(
add_variable_offset(left_token, key, pos=pos),
LLLnode.from_list(None, typ=left.typ.members[key]),
LLLnode.from_list(None, typ=right.typ.members[key]),
loc,
pos=pos,
))
Expand Down

0 comments on commit c9f935d

Please sign in to comment.