Skip to content

Commit

Permalink
fix atcoder submission string: 'ms' -> 's'
Browse files Browse the repository at this point in the history
  • Loading branch information
CroMarmot committed Jan 31, 2024
1 parent 4dbc2c4 commit fcdd9c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion oi_cli2/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.2.11"
__version__ = "0.2.2.12"
2 changes: 1 addition & 1 deletion oi_cli2/cli/adaptor/AtCoderAdaptor.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def transform_Result(res: CORE_SUB_RES) -> SubmissionResult:
quick_key=res.url, # for refetch result
url=res.url, # TODO change to webpage url
state_note=str(res.score),
time_note=str(res.time_cost_ms / 1000) + ' ms',
time_note=str(res.time_cost_ms / 1000) + ' s',
mem_note=str(res.mem_cost_kb) + ' kb',
msg_txt=res.msg_txt,
)
Expand Down

0 comments on commit fcdd9c9

Please # to comment.