Skip to content

Commit 57d5345

Browse files
author
pateldes
committed
cleanup
1 parent 4ff4826 commit 57d5345

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pcor_tools/pcor_ingest/pcor_template_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def sanitize_column(value, escape_new_line=True):
485485
value = re.sub(r'\n', ' ', value)
486486
value = re.sub(r'\t', " ", value) #must escape newlines for strings they are not valid json
487487
value = value.replace('\xa0', ' ')
488-
re.sub(r'[^\x00-\x7f]', r'', value)
488+
value = re.sub(r'[^\x00-\x7f]', r'', value)
489489
return value.strip().replace('"', '')
490490
if isinstance(value, float):
491491
if math.isnan(value):

0 commit comments

Comments
 (0)