wbbbbb commited on
Commit
2fe73d0
·
1 Parent(s): e3bd937

Update pclue.py

Browse files
Files changed (1) hide show
  1. pclue.py +2 -2
pclue.py CHANGED
@@ -89,7 +89,7 @@ class Pclue(datasets.GeneratorBasedBuilder):
89
 
90
  def _generate_examples(self, filepath, split):
91
  """Yields examples."""
92
- with open(filepath, encoding="utf-8") as f:
93
  for idx, row in enumerate(f):
94
- yield idx, json.load(row)
95
 
 
89
 
90
  def _generate_examples(self, filepath, split):
91
  """Yields examples."""
92
+ with open(filepath, encoding="utf-8") as f:
93
  for idx, row in enumerate(f):
94
+ yield idx, json.load(row)
95