From 3104ac6b59860a1aa00e22abbdd4d74294874128 Mon Sep 17 00:00:00 2001 From: BoYanZh Date: Wed, 30 Oct 2024 05:16:08 -0400 Subject: [PATCH] feat: submitter id in joj3 issue title --- joint_teapot/utils/joj3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joint_teapot/utils/joj3.py b/joint_teapot/utils/joj3.py index e9a40c9..45dd767 100644 --- a/joint_teapot/utils/joj3.py +++ b/joint_teapot/utils/joj3.py @@ -224,7 +224,7 @@ def generate_title_and_comment( comment += "\n\n" total_score += result["score"] comment += "\n" - title = f"JOJ3 Result for {exercise_name} - Score: {total_score}" + title = f"JOJ3 Result for {exercise_name} by @{submitter} - Score: {total_score}" return title, comment