From 643ce96ac584def3e1e758d30977eba3ee94c10d Mon Sep 17 00:00:00 2001
From: BoYanZh <boyanzh233@gmail.com>
Date: Sat, 22 Mar 2025 05:39:49 -0400
Subject: [PATCH] chore: remove out-of-date FIXME

---
 joint_teapot/utils/joj3.py | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/joint_teapot/utils/joj3.py b/joint_teapot/utils/joj3.py
index 56fcc35..81f611e 100644
--- a/joint_teapot/utils/joj3.py
+++ b/joint_teapot/utils/joj3.py
@@ -57,9 +57,7 @@ def generate_scoreboard(
     else:
         columns = [
             "",
-            "last_edit",  # FIXME:
-            # This is just to make changes in the file so that it can be pushed.
-            # Only used in development stage. Will be removed in the future.
+            "last_edit",
             "total",
         ]
         data = []
@@ -71,9 +69,8 @@ def generate_scoreboard(
             submitter_found = True
             break
     if not submitter_found:
-        submitter_row = [submitter, "", "0"] + [""] * (
-            len(columns) - 3
-        )  # FIXME: In formal version should be -2
+        fixed_columns = [submitter, "", "0"]
+        submitter_row = fixed_columns + [""] * (len(columns) - len(fixed_columns))
         data.append(submitter_row)
 
     # Update data
@@ -113,7 +110,6 @@ def generate_scoreboard(
     submitter_row[columns.index("total")] = str(total)
 
     now = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
-    # FIXME: Delete this in formal version
     submitter_row[columns.index("last_edit")] = now
 
     # Sort data by total, from low to high