Commit
·
a6300e3
1
Parent(s):
54c4abc
Update test.py
Browse files
test.py
CHANGED
@@ -300,7 +300,7 @@ class VoxCeleb(datasets.GeneratorBasedBuilder):
|
|
300 |
)
|
301 |
|
302 |
for path in paths[conf]:
|
303 |
-
raise Exception(Path(path).glob('**/*'))
|
304 |
paths = ""
|
305 |
for child in Path(path).iterdir():
|
306 |
paths += " " + child.name
|
|
|
300 |
)
|
301 |
|
302 |
for path in paths[conf]:
|
303 |
+
raise Exception([x for x in Path(path).glob('**/*')])
|
304 |
paths = ""
|
305 |
for child in Path(path).iterdir():
|
306 |
paths += " " + child.name
|