1 回答

TA貢獻1895條經驗 獲得超3個贊
好的,所以我找到了解決方案。itertools我相信不適用于我的情況,但我在self.current_timer = 1我的類中創(chuàng)建了一個新變量并將此函數更改為如下所示:
def timerTimeout(self):
self.time_left_int -= 1
if self.time_left_int == 0:
if self.current_timer == 1:
toaster.show_toast("test1", "test1", duration=3, threaded=True)
self.current_timer = 2
elif self.current_timer == 2:
toaster.show_toast("test2", "test2", duration=3, threaded=True)
self.current_timer = 1
self.time_left_int = next(TIME_CYCLER)
self.update_gui()
所以最終,我手動將變量設置為每個通知所需的任何值。
添加回答
舉報