diff --git a/tests/benchmark/milvus_benchmark/utils.py b/tests/benchmark/milvus_benchmark/utils.py index f77fdd1dc1..465d1e30cd 100644 --- a/tests/benchmark/milvus_benchmark/utils.py +++ b/tests/benchmark/milvus_benchmark/utils.py @@ -235,6 +235,7 @@ def modify_file(file_path_list, is_modify=False, input_content=""): def read_json_file(file_name): + """ return content of json file """ with open(file_name) as f: file_dict = json.load(f) return file_dict