From 8802c6dcf6d0b022e81560fe47ac8f323720970d Mon Sep 17 00:00:00 2001 From: QuanyiLi Date: Mon, 8 May 2023 16:57:36 +0100 Subject: [PATCH] update error message --- scenarionet/common_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scenarionet/common_utils.py b/scenarionet/common_utils.py index 993a5b3..14a7a00 100644 --- a/scenarionet/common_utils.py +++ b/scenarionet/common_utils.py @@ -71,7 +71,8 @@ def save_summary_anda_mapping(summary_file_path, mapping_file_path, summary, map pickle.dump(dict_recursive_remove_array_and_set(summary), file) with open(mapping_file_path, "wb") as file: pickle.dump(mapping, file) - print("Dataset Summary and Mapping are saved at: {}".format(summary_file_path)) + print("\n ================ Dataset Summary and Mapping are saved at: {} " + "================ \n".format(summary_file_path)) def read_dataset_summary(dataset_path):