ProgramComputer commited on
Commit
5fe600e
·
1 Parent(s): 5edce38

Update test.py

Browse files
Files changed (1) hide show
  1. test.py +1 -1
test.py CHANGED
@@ -301,7 +301,7 @@ class Test(datasets.GeneratorBasedBuilder):
301
  for key,value in tmp_paths["dev"].items():
302
  with open(value[0], "wb") as out:
303
  mapped_paths['dev'][key] = (value[0])
304
- for tmp_path in tmp_paths[1:]:
305
  with open(tmp_path, "rb") as tmp:
306
  copyfileobj(tmp, out)
307
  tmp_path.unlink()
 
301
  for key,value in tmp_paths["dev"].items():
302
  with open(value[0], "wb") as out:
303
  mapped_paths['dev'][key] = (value[0])
304
+ for tmp_path in value[1:]:
305
  with open(tmp_path, "rb") as tmp:
306
  copyfileobj(tmp, out)
307
  tmp_path.unlink()