jupyter.py 156 B

12345678
  1. """Launch the root jupyter command"""
  2. from __future__ import annotations
  3. if __name__ == "__main__":
  4. from jupyter_core.command import main
  5. main()