mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-27 04:20:22 +08:00
9 lines
254 B
Python
9 lines
254 B
Python
"""The IPython HTML Notebook"""
|
|
|
|
import os
|
|
# Packagers: modify this line if you store the notebook static files elsewhere
|
|
DEFAULT_STATIC_FILES_PATH = os.path.join(os.path.dirname(__file__), "static")
|
|
|
|
del os
|
|
|
|
from .nbextensions import install_nbextension |