is_assignments/a2/code/.venv/lib/python3.10/site-packages/jupyter.py

11 lines
177 B
Python
Raw Normal View History

2022-12-19 10:09:00 +01:00
"""Launch the root jupyter command
Alias to jupyter_core
"""
__version__ = '1.0.0'
if __name__ == '__main__':
from runpy import run_module
run_module('jupyter_core')