File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1616Fixed
1717=====
1818
19+ - Fix ``euporie-hub `` launch
1920- Fix loading of lists in config
2021- Final side bar button border color in 1-bit color mode
2122- First input not visible in notebook console if it has no output
Original file line number Diff line number Diff line change 22
33from __future__ import annotations
44
5+ import asyncio
56import logging
67from asyncio import get_event_loop
78from typing import TYPE_CHECKING
@@ -108,7 +109,7 @@ def launch(cls) -> None:
108109 raise ModuleNotFoundError ("Application `%s` not found" , cls .config .app )
109110
110111 # Run the HubApp in an SSH server
111- loop = get_event_loop ()
112+ loop = asyncio . new_event_loop ()
112113 loop .run_until_complete (
113114 asyncssh .create_server (
114115 lambda : EuporieSSHServer (app_cls = app_cls ),
You can’t perform that action at this time.
0 commit comments