File: jupyter-trust

package info (click to toggle)
nbformat 5.10.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,072 kB
  • sloc: python: 4,746; makefile: 167; javascript: 2
file content (12 lines) | stat: -rwxr-xr-x 198 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
from __future__ import annotations


def main():
    from nbformat.sign import TrustNotebookApp

    TrustNotebookApp.launch_instance()


if __name__ == "__main__":
    main()