From 4b4a57e7a6e52077930554c63395945cc9434e00 Mon Sep 17 00:00:00 2001 From: hasan7n Date: Fri, 1 Dec 2023 14:27:29 +0100 Subject: [PATCH] use get_folders_hash for new code --- cli/medperf/commands/dataset/create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/medperf/commands/dataset/create.py b/cli/medperf/commands/dataset/create.py index ab8fc15c1..20439fe4c 100644 --- a/cli/medperf/commands/dataset/create.py +++ b/cli/medperf/commands/dataset/create.py @@ -114,7 +114,7 @@ def __init__( self.data_path = str(Path(data_path).resolve()) self.labels_path = str(Path(labels_path).resolve()) self.summary_path = str(Path(summary_path).resolve()) - self.in_uid = get_folder_hash(self.data_path) + self.in_uid = get_folders_hash([self.data_path, self.labels_path]) self.out_statistics_path = generate_tmp_path() self.name = name self.description = description