Datasets:
Update arhythmia.py
Browse files- arhythmia.py +1 -1
arhythmia.py
CHANGED
@@ -312,7 +312,7 @@ features_per_config = {k: datasets.Features(features_types_per_config[k]) for k
|
|
312 |
|
313 |
class ArhythmiaConfig(datasets.BuilderConfig):
|
314 |
def __init__(self, **kwargs):
|
315 |
-
super(
|
316 |
self.features = features_per_config[kwargs["name"]]
|
317 |
|
318 |
|
|
|
312 |
|
313 |
class ArhythmiaConfig(datasets.BuilderConfig):
|
314 |
def __init__(self, **kwargs):
|
315 |
+
super(ArhythmiaConfig, self).__init__(version=VERSION, **kwargs)
|
316 |
self.features = features_per_config[kwargs["name"]]
|
317 |
|
318 |
|