Spaces:
Runtime error
Runtime error
Edward J. Schwartz
commited on
Commit
·
cecf2b8
1
Parent(s):
c073a95
Ints
Browse files
app.py
CHANGED
|
@@ -58,7 +58,7 @@ def get_all_dis(bname, addrs=None):
|
|
| 58 |
|
| 59 |
def get_funs(f):
|
| 60 |
funs = get_all_dis(f.name)
|
| 61 |
-
return "\n".join(funs.keys())
|
| 62 |
|
| 63 |
demo = gr.Interface(fn=get_funs, inputs="file", outputs="textarea")
|
| 64 |
demo.launch(server_name="0.0.0.0", server_port=7860)
|
|
|
|
| 58 |
|
| 59 |
def get_funs(f):
|
| 60 |
funs = get_all_dis(f.name)
|
| 61 |
+
return "\n".join(("%#x" % addr) for addr in funs.keys())
|
| 62 |
|
| 63 |
demo = gr.Interface(fn=get_funs, inputs="file", outputs="textarea")
|
| 64 |
demo.launch(server_name="0.0.0.0", server_port=7860)
|