From 6ef13e4ea3798a1130f59879d51099985a969b45 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sat, 7 Dec 2024 04:08:40 +0900 Subject: [PATCH] chore: update process_time.py occured -> occurred --- benchmark/process_time.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/process_time.py b/benchmark/process_time.py index c2a468e..e743cbf 100644 --- a/benchmark/process_time.py +++ b/benchmark/process_time.py @@ -17,7 +17,7 @@ async def process_file(megaparse: MegaParseSDK, file_path): total = time.perf_counter() - t0 return total except Exception as e: - print(f"Exception occured: {e}") + print(f"Exception occurred: {e}") return None