Skip to content

Commit

Permalink
feat: renewal
Browse files Browse the repository at this point in the history
  • Loading branch information
tony9402 committed Jun 30, 2024
1 parent a56e96d commit 7472854
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion baekjoon_utils/baekjoon_utils/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from baekjoon_utils.daily.pick import TodayProblemPicker
from baekjoon_utils.docs.problem import ProblemByTag
from baekjoon_utils.core.solved_api import SolvedAPI
from baekjoon_utils.utils import get_today_date_kst_str


def get_option():
Expand Down Expand Up @@ -48,6 +49,10 @@ def main():
f.write(p.make_table())
f.close()

with open("update_log.md", "w") as f:
f.write(get_today_date_kst_str())
f.close()

if option & 1:
picker = TodayProblemPicker()
today_problems = picker.pick_today_problem()
Expand All @@ -68,4 +73,4 @@ def main():


if __name__ == "__main__":
main()
main()

0 comments on commit 7472854

Please sign in to comment.