From 8804f1e10d507ba293fafc77a7e93d3a84a5814b Mon Sep 17 00:00:00 2001 From: Lint Action Date: Tue, 4 May 2021 06:29:07 +0000 Subject: =?UTF-8?q?:rotating=5Flight:=20=E8=87=AA=E5=8A=A8=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E4=BB=A3=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/utils/limit.py | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'ATRI/utils/limit.py') diff --git a/ATRI/utils/limit.py b/ATRI/utils/limit.py index 7442dfb..bdd1d84 100644 --- a/ATRI/utils/limit.py +++ b/ATRI/utils/limit.py @@ -15,22 +15,18 @@ def del_list(user: str) -> None: exciting_user = del_list_aim(exciting_user, user) -def is_too_exciting(user: int, - times: int, - seconds: float = 0, - hours: float = 0, - days: float = 0) -> bool: +def is_too_exciting( + user: int, times: int, seconds: float = 0, hours: float = 0, days: float = 0 +) -> bool: global exciting_user - + if user in exciting_user: return False else: if count_list(exciting_user_temp, user) == times: - delta = datetime.timedelta( - seconds=seconds, hours=hours, days=days) - trigger = DateTrigger( - run_date=datetime.datetime.now() + delta) - + delta = datetime.timedelta(seconds=seconds, hours=hours, days=days) + trigger = DateTrigger(run_date=datetime.datetime.now() + delta) + scheduler.add_job( func=del_list, trigger=trigger, -- cgit v1.2.3