From 2ea2d7a1a853d3abb56bd813b2d60db96018f4e1 Mon Sep 17 00:00:00 2001 From: BoYanZh Date: Fri, 11 Oct 2024 01:31:45 -0400 Subject: [PATCH] feat: more spaces --- joint_teapot/utils/joj3.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/joint_teapot/utils/joj3.py b/joint_teapot/utils/joj3.py index ea9b087..64e9941 100644 --- a/joint_teapot/utils/joj3.py +++ b/joint_teapot/utils/joj3.py @@ -201,16 +201,16 @@ def generate_title_and_comment( for result in stage["results"] ): continue - comment += f"## {stage['name']}\n" + comment += f"## {stage['name']}" force_quit = stage["force_quit"] if force_quit: - comment += " - Failed" + comment += " - Fatal Error" comment += "\n" for i, result in enumerate(stage["results"]): - comment += "
" + comment += "
\n" comment += f"Case {i} - Score: {result['score']}\n" if result["comment"].strip() != "": - comment += f"\n{result['comment']}\n" + comment += f"\n{result['comment']}\n\n" comment += "
\n\n" total_score += result["score"] comment += "\n"