Skip to content

Commit

Permalink
Fix small lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davesque committed Jun 27, 2019
1 parent c475dff commit 9989699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def compile_codes(codes,
raise exc

if output_type == 'list':
return [v for v in out.values()]
return list(out.values())
elif output_type == 'dict':
return out
else:
Expand Down

0 comments on commit 9989699

Please sign in to comment.