|
@@ -1,4 +1,4 @@
|
|
|
-from random import random, randomint
|
|
|
+from random import random, randint
|
|
|
from asyncio import sleep
|
|
|
from datetime import datetime, timedelta, date, time
|
|
|
|
|
@@ -163,7 +163,7 @@ async def notify_birthdays_loop():
|
|
|
|
|
|
async def markov_say_loop():
|
|
|
while True:
|
|
|
- await sleep(randomint(30, 60 * 5))
|
|
|
+ await sleep(randint(30, 60 * 5))
|
|
|
|
|
|
for chat in await list_markov_chats():
|
|
|
if random() > chat.opt_message_prob:
|