8 lines
129 B
Python
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]
|