优化查找断点列表。

This commit is contained in:
2026-03-02 18:27:54 +08:00
parent fbdbed37f4
commit cfafb9d3d4
14 changed files with 17198 additions and 17201 deletions

View File

@@ -135,13 +135,6 @@ def get_combined_tasks():
# full_time = f"{today} {local_times[user]}"
# 确保时间是两位数格式
raw_time = local_times[user]
# 将时间格式化为两位数9:52:20 -> 09:52:20
# if ':' in raw_time:
# parts = raw_time.split(':')
# if len(parts[0]) == 1:
# raw_time = f"0{raw_time}" # 补齐前导零
# full_time = f"{today} {raw_time}"
full_time = normalize_datetime(raw_time)
task_list[address] = {"time": full_time, "user": user}