radames commited on
Commit
555f475
·
1 Parent(s): 75e590a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import talib
6
  def run():
7
  close = np.random.random(100)
8
  output = talib.SMA(close)
9
- return output
10
 
11
  with gr.Blocks() as demo:
12
  out = gr.JSON()
 
6
  def run():
7
  close = np.random.random(100)
8
  output = talib.SMA(close)
9
+ return output.to_list()
10
 
11
  with gr.Blocks() as demo:
12
  out = gr.JSON()