sandz7 commited on
Commit
6def1b9
Β·
1 Parent(s): 930773d

Removed the spaces in the join so there won't be extra space

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