lannliat commited on
Commit
b4c95cd
1 Parent(s): 6084bd4

Fix newline

Browse files
Files changed (1) hide show
  1. multilexnorm.py +2 -2
multilexnorm.py CHANGED
@@ -204,6 +204,6 @@ class MultiLexNorm(datasets.GeneratorBasedBuilder):
204
  else: # blank
205
  ip, tgt = "", ""
206
  yield key, {
207
- "inputs": ip,
208
- "targets": tgt,
209
  }
 
204
  else: # blank
205
  ip, tgt = "", ""
206
  yield key, {
207
+ "inputs": ip.strip(),
208
+ "targets": tgt.strip(),
209
  }