Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add activator plugin #17

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions datalayer/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class DatalayerApp(Application):
"""Base class for Datalayer applications"""

name = "datalayer" # override in subclasses
description = "A Datalayer IOlication"
description = "A Datalayer Application"

aliases = base_aliases
flags = base_flags
Expand Down Expand Up @@ -280,7 +280,7 @@ def start(self):

@classmethod
def launch_instance(cls, argv=None, **kwargs):
"""Launch an instance of a Datalayer IOlication"""
"""Launch an instance of a Datalayer Application"""
try:
return super().launch_instance(argv=argv, **kwargs)
except NoStart:
Expand Down
4 changes: 2 additions & 2 deletions src/jupyterlab/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { datalayerCorePlugin } from '@datalayer/run';
import { activatorPlugin, datalayerCorePlugin } from '@datalayer/run';

export default datalayerCorePlugin;
export default [activatorPlugin, datalayerCorePlugin];
Loading