diff --git a/src/impfbot.py b/src/impfbot.py index 65e203a..437b3dd 100644 --- a/src/impfbot.py +++ b/src/impfbot.py @@ -5,7 +5,6 @@ from alerts import alert from api_wrapper import fetch_api, ShadowBanException, RequestConnectionError from common import sleep, sleep_until, is_night, datetime2timestamp, YES, NO -from config_generator import start_config_generation from log import log from settings import load, settings, ParseExeption @@ -86,6 +85,7 @@ def check_for_slot() -> None: print("Do you want to use the interface to generate a config? yes/no") result = input() if result in YES: + from config_generator import start_config_generation log.info("Starting config generator") start_config_generation() break