This commit is contained in:
Adam J. Stewart 2021-06-23 22:07:32 +00:00
Родитель 011aaed695
Коммит 685cf6e253
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,8 @@ class Dataset:
self.collection_id = collection_id
def download(self, output_dir: str, **kwargs: str) -> None:
for tarball in glob.iglob(os.path.join("tests", "data", "cyclone", "*.tar.gz")):
fileglob = self.collection_id + "*.tar.gz"
for tarball in glob.iglob(os.path.join("tests", "data", "cyclone", fileglob)):
shutil.copy(tarball, output_dir)