Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/jupyterlab_pygments/__init__.py: 57%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1try: 

2 from ._version import __version__ # noqa 

3except ImportError: 

4 # Fallback when using the package in dev mode without installing 

5 # in editable mode with pip. Here this is particularly important 

6 # to be able to run the generate_css.py script. 

7 __version__ = "dev" 

8from .style import JupyterStyle # noqa 

9 

10 

11def _jupyter_labextension_paths(): 

12 return [{ 

13 "src": "labextension", 

14 "dest": "jupyterlab_pygments" 

15 }]