From 0470906f0c806fc679e527f7baf6622feb450312 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sat, 6 Jan 2024 20:41:03 -0600 Subject: [PATCH] Derive JupyterAsyncApp from JupyterApp --- jupyter_core/application.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jupyter_core/application.py b/jupyter_core/application.py index 0051fdd..0f03a9e 100644 --- a/jupyter_core/application.py +++ b/jupyter_core/application.py @@ -286,9 +286,12 @@ def launch_instance(cls, argv: t.Any = None, **kwargs: t.Any) -> None: loop.close() -class JupyterAsyncApp(Application): +class JupyterAsyncApp(JupyterApp): """A Jupyter application that runs on an asyncio loop.""" + name = "jupyter_async" # override in subclasses + description = "An Async Jupyter Application" + # Set to True for tornado-based apps. _prefer_selector_loop = False