fix: 修复间隔的单位错误

This commit is contained in:
amtoaer
2023-11-22 23:37:45 +08:00
parent 83daaa889b
commit 8a6f05da9c

View File

@@ -10,7 +10,7 @@ async def entry() -> None:
await process()
while True:
await process()
await asyncio.sleep(settings.interval)
await asyncio.sleep(settings.interval * 60)
def start() -> None: