sandz7 commited on
Commit
622f3ea
Β·
1 Parent(s): 8899970

Show the first 15 items in output_list

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ def output_list(output: list):
34
  Grabs the output from the first position in list,
35
  and returns it as a string as a response
36
  """
37
- output_text = output[0]
38
 
39
  return output_text
40
 
 
34
  Grabs the output from the first position in list,
35
  and returns it as a string as a response
36
  """
37
+ output_text = output[:15]
38
 
39
  return output_text
40