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

fix(LibReserve): 修复冗余的链式赋值

This commit is contained in:
2026-03-17 20:42:42 +08:00
parent c03eed1d51
commit faa26b489a
+5 -2
View File
@@ -536,8 +536,11 @@ class LibReserve(LibTimeSelector):
"""
Select seat begin and end time.
"""
exp_beg_tm_str = act_beg_tm_str = begin_time["time"]
exp_end_tm_str = act_end_tm_str = end_time["time"]
exp_beg_tm_str = begin_time["time"]
exp_end_tm_str = end_time["time"]
# Initialize actual time strings for logging
act_beg_tm_str = exp_beg_tm_str
act_end_tm_str = exp_end_tm_str
exp_beg_mins = self._timeStrToMins(exp_beg_tm_str)
act_beg_mins = exp_beg_mins
exp_end_mins = self._timeStrToMins(exp_end_tm_str)