We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b798fc commit e601276Copy full SHA for e601276
1 file changed
_MonthlyChallenges/update_scoreboard.py
@@ -37,9 +37,9 @@ def main():
37
current_month = entry["created_at"]
38
39
print(f"current_month: {current_month}")
40
- current_month = current_month.strftime("%Y-%m")
+ current_month = current_month[:7]
41
42
-
+
43
# 1. 기존 스코어보드 로드 (없으면 빈 dict로 초기화)
44
print("[Step 1] Loading scoreboard file...")
45
if os.path.exists(SCOREBOARD_FILE):
0 commit comments