sandz7 commited on
Commit
930773d
Β·
verified Β·
1 Parent(s): 8a691c0

placed a space on .join inside 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
- cleaned_output = ' '.join(filter(None, output))
38
 
39
  return cleaned_output
40
 
 
34
  Grabs the output from the first position in list,
35
  and returns it as a string as a response
36
  """
37
+ cleaned_output = ' '.join(filter(None, output))
38
 
39
  return cleaned_output
40