From fbbf5d81bf21fe75bce4aec4afc9183dcad73743 Mon Sep 17 00:00:00 2001 From: wt Date: Thu, 16 Dec 2021 15:24:38 +0800 Subject: [PATCH] [skip ci] Update comments of parser on benchmark (#13490) Signed-off-by: wangting0128 --- tests/benchmark/milvus_benchmark/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/benchmark/milvus_benchmark/utils.py b/tests/benchmark/milvus_benchmark/utils.py index 5c6dfa594f..dba2929f6a 100644 --- a/tests/benchmark/milvus_benchmark/utils.py +++ b/tests/benchmark/milvus_benchmark/utils.py @@ -259,7 +259,7 @@ def modify_file(file_path_list, is_modify=False, input_content=""): def read_json_file(file_name): - """ return content of json file """ + """ Return content of json file """ with open(file_name) as f: file_dict = json.load(f) return file_dict