def __init__(self):
from .docker import DockerConfig
from .interfaces import InterfaceStatus
from .visualization import MdtExtensionConfig
self.interface_status = InterfaceStatus()
self.compute_config = DockerConfig()
self.nbextension_config = MdtExtensionConfig()
self.changelog = ChangeLog()
self.tab_list = StyledTab([ipy.Box(),
self.nbextension_config,
self.interface_status,
self.compute_config,
self.changelog])
self.tab_list.set_title(0, '^')
self.tab_list.set_title(1, 'Notebook config')
self.tab_list.set_title(2, "Interfaces")
self.tab_list.set_title(3, 'Docker config')
self.tab_list.set_title(4, "What's new")
self.children = [self.make_header(), self.tab_list]
super().__init__(children=self.children)
compute.py 文件源码
python
阅读 28
收藏 0
点赞 0
评论 0
评论列表
文章目录