txlyre 6 сар өмнө
parent
commit
cbaf964411
1 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 2 2
      openkriemy.py

+ 2 - 2
openkriemy.py

@@ -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: