Syntax error in preprocess.py
#1
by
dafraile
- opened
Hi,
When trying to import the preprocess.py file python returns an error:
File "", line 66
example['linearized_table'] = ' + table_str + '\n' + '\n'
I believe the right syntax you intended is:
example['linearized_table'] = " '" + table_str + '\n' + '\n'
Cheers,
David
Don't know why Hugginface forum is doing something weird with the formatting:
What I've meant is to add " " to the ' after the equal sign