Fix syntax issue
#4
by
mausam3407
- opened
- preprocess.py +1 -1
preprocess.py
CHANGED
@@ -90,6 +90,6 @@ def preprocess(example):
|
|
90 |
|
91 |
table_str += "</table>"
|
92 |
|
93 |
-
example['linearized_table'] = <s>' + table_str + '\n' + '\n'
|
94 |
return example
|
95 |
|
|
|
90 |
|
91 |
table_str += "</table>"
|
92 |
|
93 |
+
example['linearized_table'] = '<s>' + table_str + '\n' + '\n'
|
94 |
return example
|
95 |
|