futin commited on
Commit
899322c
1 Parent(s): 50f8355

Update int.py

Browse files
Files changed (1) hide show
  1. int.py +1 -1
int.py CHANGED
@@ -110,7 +110,7 @@ class Guess(datasets.GeneratorBasedBuilder):
110
  with open(label_file, 'r') as f:
111
  labels = f.read().splitlines()
112
  data = []
113
- for idx, line, label in enumerate(zip(lines, labels)):
114
  if label not in _CLASS:
115
  print(line, label)
116
  continue
 
110
  with open(label_file, 'r') as f:
111
  labels = f.read().splitlines()
112
  data = []
113
+ for idx, (line, label) in enumerate(zip(lines, labels)):
114
  if label not in _CLASS:
115
  print(line, label)
116
  continue