Spaces:
Runtime error
Runtime error
File size: 177 Bytes
897c843 |
1 2 3 4 5 6 7 8 |
def pre_process(content=""):
text = content.splitlines()
final_text = ""
for i in text:
if len(i) > 1:
final_text += " "+i
return final_text |