Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Feb 12, 2019
1 parent 40ff0c3 commit 43a69cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions vyper/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ def get_asm(asm_list):

def get_source_map(code, contract_name, interface_codes=None):
asm_list = compile_lll.compile_to_assembly(
optimizer.optimize(
parser.parse_to_lll(
code,
runtime_only=True,
interface_codes=interface_codes)))
optimizer.optimize(
parser.parse_to_lll(
code,
runtime_only=True,
interface_codes=interface_codes)))
c, line_number_map = compile_lll.assembly_to_evm(asm_list)
# Sort line_number_map
out = OrderedDict()
Expand Down

0 comments on commit 43a69cb

Please sign in to comment.