LeireTedCas commited on
Commit
72843d5
·
1 Parent(s): 3ae5fcb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ xlrd .xlsx .Element_has_iter =True #line:26
24
 
25
  def remove_non_printable(value):
26
  if isinstance(value, str):
27
- return re.sub(r'[^\x20-\x7E]', '', value)
28
  return value
29
 
30
  async def faq ():#line:28
 
24
 
25
  def remove_non_printable(value):
26
  if isinstance(value, str):
27
+ return re.sub(r'[^\x20-\x7E\n\t\xa0]', '', value)
28
  return value
29
 
30
  async def faq ():#line:28