ejschwartz commited on
Commit
42886c0
·
1 Parent(s): 812a13e
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -89,7 +89,7 @@ def compile(compiler, flags, source):
89
  def predict(target_bytes, source, compiler, flags, disasm_arch, disasm_options):
90
  target_bytes = bytes.fromhex(target_bytes)
91
  compiled_bytes, compile_output, compiled_disassembly = compile(compiler, flags, source)
92
- target_disassembly = disassemble_bytes(target_bytes, disasm_arch)
93
 
94
  if compiled_bytes is not None:
95
  return (
 
89
  def predict(target_bytes, source, compiler, flags, disasm_arch, disasm_options):
90
  target_bytes = bytes.fromhex(target_bytes)
91
  compiled_bytes, compile_output, compiled_disassembly = compile(compiler, flags, source)
92
+ target_disassembly = disassemble_bytes(target_bytes, disasm_arch, disasm_options)
93
 
94
  if compiled_bytes is not None:
95
  return (