Python traitlets.Instance() Examples
The following are 2
code examples of traitlets.Instance().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
traitlets
, or try the search function
.
Example #1
Source File: widget_link.py From Carnets with BSD 3-Clause "New" or "Revised" License | 5 votes |
def __init__(self, **kwargs): super(WidgetTraitTuple, self).__init__(Instance(Widget), Unicode(), **kwargs)
Example #2
Source File: widget_link.py From pySINDy with MIT License | 4 votes |
def __init__(self, **kwargs): super(WidgetTraitTuple, self).__init__(Instance(Widget), Unicode(), **kwargs)