mausam3407
commited on
Commit
•
26bd3c3
1
Parent(s):
879c58b
Fix syntax issue
Browse files- 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 |
|