Skip to content

Commit e601276

Browse files
authored
Update update_scoreboard.py
1 parent 9b798fc commit e601276

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_MonthlyChallenges/update_scoreboard.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ def main():
3737
current_month = entry["created_at"]
3838

3939
print(f"current_month: {current_month}")
40-
current_month = current_month.strftime("%Y-%m")
40+
current_month = current_month[:7]
4141
print(f"current_month: {current_month}")
42-
42+
4343
# 1. 기존 스코어보드 로드 (없으면 빈 dict로 초기화)
4444
print("[Step 1] Loading scoreboard file...")
4545
if os.path.exists(SCOREBOARD_FILE):

0 commit comments

Comments
 (0)