art-bashkirev commited on
Commit
fe5bbe9
·
1 Parent(s): c74999f
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ def make_all(numbers) -> dict:
34
  def getints(numbers: str):
35
  ls = list(map(int, numbers.split(', ')))
36
  make_all(ls)
37
- return f"{ls}"
38
 
39
 
40
  iface = gr.Interface(fn=getints, inputs="text", outputs="text", title="Tilted Calculator")
 
34
  def getints(numbers: str):
35
  ls = list(map(int, numbers.split(', ')))
36
  make_all(ls)
37
+ return f"{make_all(ls)}"
38
 
39
 
40
  iface = gr.Interface(fn=getints, inputs="text", outputs="text", title="Tilted Calculator")