scheduler initialization fix
frdel committed
May 3, 2025 at 16:28 UTC
eaeb3a9fe536a21bd15b7098489470ff12d4013c
1 file changed
+3
-3
run_ui.py
+3
-3
@@ -184,9 +184,9 @@ def run():
184
185
# initialize contexts from persisted chats
186
persist_chat.load_tmp_chats()
187
- # reload scheduler
188
- scheduler = TaskScheduler.get()
189
- asyncio.run(scheduler.reload())
187
+ # # reload scheduler
188
+ # scheduler = TaskScheduler.get()
189
+ # asyncio.run(scheduler.reload())
190
191
except Exception as e:
192
PrintStyle().error(errors.format_error(e))