polinaeterna HF staff commited on
Commit
07aa7b6
1 Parent(s): 1096443

remove description duplication in DatasetInfo

Browse files

`self.config.description` and `_DESCRIPTION` are actually the same (see line 74)

Files changed (1) hide show
  1. minds14.py +1 -1
minds14.py CHANGED
@@ -114,7 +114,7 @@ class Minds14(datasets.GeneratorBasedBuilder):
114
  )
115
 
116
  return datasets.DatasetInfo(
117
- description=self.config.description + "\n" + _DESCRIPTION,
118
  features=features,
119
  supervised_keys=("audio", "transcription"),
120
  homepage=self.config.homepage,
 
114
  )
115
 
116
  return datasets.DatasetInfo(
117
+ description=_DESCRIPTION,
118
  features=features,
119
  supervised_keys=("audio", "transcription"),
120
  homepage=self.config.homepage,