File size: 128 Bytes
d1ceb73 |
1 2 3 4 5 6 7 |
"""CLI entry point for notebook."""
import sys
from notebook.app import main
sys.exit(main()) # type:ignore[no-untyped-call]
|
d1ceb73 |
1 2 3 4 5 6 7 |
"""CLI entry point for notebook."""
import sys
from notebook.app import main
sys.exit(main()) # type:ignore[no-untyped-call]
|