Skip to content

Commit

Permalink
Underscores not dashes for simplicity
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Mar 16, 2024
1 parent 604ef60 commit db6dc76
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 36 deletions.
17 changes: 0 additions & 17 deletions jupyterlab-spreadsheet-editor/__init__.py

This file was deleted.

19 changes: 0 additions & 19 deletions jupyterlab-spreadsheet-editor/_version.py

This file was deleted.

16 changes: 16 additions & 0 deletions jupyterlab_spreadsheet_editor/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
try:
from ._version import __version__
except ImportError:
# Fallback when using the package in dev mode without installing
# in editable mode with pip. It is highly recommended to install
# the package from a stable release or in editable mode: https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs
import warnings
warnings.warn("Importing 'jupyterlab_spreadsheet_editor' outside a proper installation.")
__version__ = "dev"


def _jupyter_labextension_paths():
return [{
"src": "labextension",
"dest": "spreadsheet-editor"
}]

0 comments on commit db6dc76

Please sign in to comment.