1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-06-18 07:23:03 +08:00

style(*): 将中文逗号替换为英文逗号

This commit is contained in:
2026-03-20 08:59:09 +08:00
parent 1cfe261324
commit bf93cc2cbc
7 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -243,7 +243,7 @@ class AutoLib(MsgBase):
else:
result = 1
else:
self._showTrace(f"用户 {username} 无法预约已跳过")
self._showTrace(f"用户 {username} 无法预约, 已跳过")
result = 2
# checkin
@@ -255,7 +255,7 @@ class AutoLib(MsgBase):
else:
result = 1
else:
self._showTrace(f"用户 {username} 无法签到已跳过")
self._showTrace(f"用户 {username} 无法签到, 已跳过")
result = 2
if last_result == 0: # partly success
result = 0
@@ -277,7 +277,7 @@ class AutoLib(MsgBase):
else:
result = 1
else:
self._showTrace(f"用户 {username} 无法续约已跳过")
self._showTrace(f"用户 {username} 无法续约, 已跳过")
result = 2
if last_result == 0: # partly success
result = 0
@@ -322,7 +322,7 @@ class AutoLib(MsgBase):
)
if r == -1:
self._showTrace(
f"用户 {user["username"]} 处理过程中页面发生异常无法继续操作, 任务已终止 !",
f"用户 {user["username"]} 处理过程中页面发生异常, 无法继续操作, 任务已终止 !",
self.TraceLevel.WARNING
)
break
+1 -1
View File
@@ -370,7 +370,7 @@ class LibChecker(LibOperator):
else:
self._showTrace(f"\n"\
f" 续约失败 !\n"\
f" 续约后结束时间为 {act_record["time"]["end"]}与预期结束时间 {record["time"]["end"]} 不符 !"
f" 续约后结束时间为 {act_record["time"]["end"]},与预期结束时间 {record["time"]["end"]} 不符 !"
)
return False
self._showTrace(f"用户在 {date} 没有有效预约记录, 无法检查续约结果")
+2 -2
View File
@@ -130,10 +130,10 @@ class LibRenew(LibTimeSelector):
if target_renew_mins > LIBRARY_CLOSE_TIME:
actual_renew_duration = LIBRARY_CLOSE_TIME - self._timeStrToMins(end_time)
if actual_renew_duration <= 0:
self._showTrace(f"当前结束时间 {end_time} 已接近闭馆时间无法续约 !", self.TraceLevel.ERROR)
self._showTrace(f"当前结束时间 {end_time} 已接近闭馆时间,无法续约 !", self.TraceLevel.ERROR)
return False
self._showTrace(
f"续约时间已调整至闭馆时间 {self._minsToTimeStr(LIBRARY_CLOSE_TIME)}"
f"续约时间已调整至闭馆时间 {self._minsToTimeStr(LIBRARY_CLOSE_TIME)},"
f"实际续约时长为 {actual_renew_duration//60} 小时 {actual_renew_duration%60} 分钟"
)
return True