Files
MLPproject/.venv/lib/python3.12/site-packages/notebook/__main__.py
2025-10-23 15:44:32 +02:00

8 lines
129 B
Python

"""CLI entry point for notebook."""
import sys
from notebook.app import main
sys.exit(main()) # type:ignore[no-untyped-call]