From 8f5b23555cccbdc52fc882ccc204963fb2006b05 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Thu, 26 Jun 2025 07:36:09 -0400 Subject: [PATCH] chore: run time -> clock time --- joj3_config_generator/models/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joj3_config_generator/models/task.py b/joj3_config_generator/models/task.py index ededc4e..cba2bdd 100644 --- a/joj3_config_generator/models/task.py +++ b/joj3_config_generator/models/task.py @@ -29,7 +29,7 @@ class ParserResultDetail(BaseModel): cpu_time: bool = Field( True, validation_alias=AliasChoices("cpu-time", "cpu_time") ) # Display CPU time - time: bool = True # Display run time + time: bool = True # Display clock time mem: bool = True # Display memory usage stdout: bool = False # Display stdout messages stderr: bool = False # Display stderr messages