perf: 调整内置延时机制

This commit is contained in:
Quan
2025-09-16 13:00:08 +08:00
parent af63050292
commit f2c52cbe89
10 changed files with 19 additions and 16 deletions

View File

@@ -49,7 +49,7 @@ def logging(log, text, style=INFO):
async def sleep_time(
min_time: int | float = 1.0,
max_time: int | float = 2.5,
min_time: int | float = 2.0,
max_time: int | float = 4.0,
):
await sleep(uniform(min_time, max_time))