This commit is contained in:
27942
2025-10-27 10:18:59 +08:00
parent 18793fb382
commit 5aa5edac87
3 changed files with 43 additions and 55 deletions

View File

@@ -14,7 +14,7 @@ while True:
current_minute = current_time.tm_min
print(current_minute)
if current_minute in [6, 30]:
if current_minute in [0, 30]:
show_reminder()
# 避免在同一分钟内重复提醒,等待一分钟
time.sleep(60)