ejschwartz commited on
Commit
20f12de
·
1 Parent(s): 777a3cd
Files changed (1) hide show
  1. main.py +2 -2
main.py CHANGED
@@ -55,8 +55,8 @@ def run():
55
  inputs=[
56
  gr.Textbox(lines=10, label="Python bytestring of binary code"),
57
  gr.Textbox(lines=10, label="Decompiled C Source Code"),
58
- gr.Textbox(label="Compiler", default="gcc"),
59
- gr.Textbox(label="Compiler Flags", default="-O2"),
60
  ],
61
  outputs=[gr.Textbox(), gr.Number()],
62
  )
 
55
  inputs=[
56
  gr.Textbox(lines=10, label="Python bytestring of binary code"),
57
  gr.Textbox(lines=10, label="Decompiled C Source Code"),
58
+ gr.Textbox(label="Compiler", value="gcc"),
59
+ gr.Textbox(label="Compiler Flags", value="-O2"),
60
  ],
61
  outputs=[gr.Textbox(), gr.Number()],
62
  )