From 3518f39efe3c945d5846033cd3ecc5ffe398103d Mon Sep 17 00:00:00 2001 From: Mohammad Kassem Date: Sun, 8 Dec 2024 21:12:41 +0000 Subject: [PATCH] finalize import/export --- cli/medperf/commands/dataset/import_dataset.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cli/medperf/commands/dataset/import_dataset.py b/cli/medperf/commands/dataset/import_dataset.py index b80bc430a..66a83682a 100644 --- a/cli/medperf/commands/dataset/import_dataset.py +++ b/cli/medperf/commands/dataset/import_dataset.py @@ -84,7 +84,6 @@ def validate(self): self.tarfiles = [os.path.join(self.tarfiles, file) for file in tarfiles_names] with open(backup_config) as f: self.paths = yaml.safe_load(f) - print(self.paths) # Checks if yaml file paths are valid if self.paths["dataset"] not in tarfiles_names: raise ExecutionError("Dataset backup is invalid, dataset folders not found")