Skip to content

Commit

Permalink
Add activator plugin (#17)
Browse files Browse the repository at this point in the history
Co-authored-by: Frédéric Collonval <[email protected]>
  • Loading branch information
fcollonval and fcollonval authored Jul 15, 2024
1 parent 29db8ae commit 306d6f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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];

0 comments on commit 306d6f9

Please sign in to comment.