mirror of
https://gitea.phreedom.club/localhost_frssoft/FMN_bot
synced 2024-11-22 16:19:22 +02:00
fix sqlite "recursive" get_state
This commit is contained in:
parent
6d30acedd0
commit
cc4f78d08f
|
@ -1,6 +1,7 @@
|
||||||
from src import listener_context, listener_mention, imdb_datasets_worker
|
from src import listener_context, listener_mention, imdb_datasets_worker
|
||||||
from config import logger_default_level
|
from config import logger_default_level
|
||||||
import logging
|
import logging
|
||||||
|
import time
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,6 +9,7 @@ def main():
|
||||||
logging.basicConfig(level=logger_default_level)
|
logging.basicConfig(level=logger_default_level)
|
||||||
|
|
||||||
listener_mention.run_scan_notif() # Слушаем упоминания в фоне
|
listener_mention.run_scan_notif() # Слушаем упоминания в фоне
|
||||||
|
time.sleep(1)
|
||||||
|
|
||||||
listener_context.scan_context_thread() # Слушаем тред на новые предложения фильмов
|
listener_context.scan_context_thread() # Слушаем тред на новые предложения фильмов
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue