From 34b705f049dcc26fee79cfa9945c8f229509f15a Mon Sep 17 00:00:00 2001 From: retoor Date: Tue, 17 Dec 2024 13:58:20 +0100 Subject: [PATCH] Changed interval. --- src/ragnar/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ragnar/cli.py b/src/ragnar/cli.py index c82ea1f..3e872cb 100644 --- a/src/ragnar/cli.py +++ b/src/ragnar/cli.py @@ -20,7 +20,7 @@ def bot_task(username, password): log.info(f"Created new bot runniner. Username: {username}") while True: - time.sleep(random.randint(1, 120)) + time.sleep(random.randint(1, 50)) bot = Bot(username=username, password=password) bot.login()