File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
python/ipywidgets/ipywidgets/widgets Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -302,22 +302,22 @@ class Widget(LoggingHasTraits):
302
302
303
303
@_staticproperty
304
304
def widgets ():
305
- warnings .warn ("Widget.widgets is deprecated, use ipywidgets.widgets.widget._instances " , DeprecationWarning )
305
+ warnings .warn ("Widget.widgets is deprecated. " , DeprecationWarning )
306
306
return _instances
307
307
308
308
@_staticproperty
309
309
def _active_widgets ():
310
- warnings .warn ("Widget._active_widgets is deprecated, use ipywidgets.widgets.widget._instances " , DeprecationWarning )
310
+ warnings .warn ("Widget._active_widgets is deprecated. " , DeprecationWarning )
311
311
return _instances
312
312
313
313
@_staticproperty
314
314
def _widget_types ():
315
- warnings .warn ("Widget._widget_types is deprecated, use ipywidgets.widgets.widget._registry " , DeprecationWarning )
315
+ warnings .warn ("Widget._widget_types is deprecated. " , DeprecationWarning )
316
316
return _registry
317
317
318
318
@_staticproperty
319
319
def widget_types ():
320
- warnings .warn ("Widget.widget_types is deprecated, use ipywidgets.widgets.widget._registry " , DeprecationWarning )
320
+ warnings .warn ("Widget.widget_types is deprecated. " , DeprecationWarning )
321
321
return _registry
322
322
323
323
@classmethod
You can’t perform that action at this time.
0 commit comments