mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-24 12:05:22 +08:00
12 lines
282 B
Python
12 lines
282 B
Python
import os
|
|
|
|
from ..widget import Widget
|
|
from IPython.utils.traitlets import Unicode
|
|
from IPython.utils.javascript import display_all_js
|
|
|
|
class ContainerWidget(Widget):
|
|
target_name = Unicode('container_widget')
|
|
default_view_name = Unicode('ContainerView')
|
|
|
|
_keys = []
|