lintang commited on
Commit
06ad559
1 Parent(s): 0308c2e

fixed missing comma

Browse files
Files changed (1) hide show
  1. numerical_reasoning.py +2 -2
numerical_reasoning.py CHANGED
@@ -74,7 +74,7 @@ class NumericalReasoning(datasets.GeneratorBasedBuilder):
74
  {
75
  "x1": datasets.Value("int32"),
76
  "x2": datasets.Value("int32"),
77
- "y": datasets.Value("int32")
78
  }
79
  )
80
  else:
@@ -82,7 +82,7 @@ class NumericalReasoning(datasets.GeneratorBasedBuilder):
82
  {
83
  "x": datasets.Value("int32"),
84
  "x_time_unit": datasets.Value("string"),
85
- "y": datasets.Value("int32")
86
  "y_time_unit": datasets.Value("string"),
87
  }
88
  )
 
74
  {
75
  "x1": datasets.Value("int32"),
76
  "x2": datasets.Value("int32"),
77
+ "y": datasets.Value("int32"),
78
  }
79
  )
80
  else:
 
82
  {
83
  "x": datasets.Value("int32"),
84
  "x_time_unit": datasets.Value("string"),
85
+ "y": datasets.Value("int32"),
86
  "y_time_unit": datasets.Value("string"),
87
  }
88
  )