mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-13 13:17:50 +08:00
Merge pull request #5678 from maxalbert/master
Fix copy & paste error in docstring of ImageWidget class
This commit is contained in:
commit
367a1aa96a
@ -31,4 +31,4 @@ class CheckboxWidget(_BoolWidget):
|
||||
|
||||
class ToggleButtonWidget(_BoolWidget):
|
||||
_view_name = Unicode('ToggleButtonView', sync=True)
|
||||
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
"""ButtonWidget class.
|
||||
"""ImageWidget class.
|
||||
|
||||
Represents a button in the frontend using a widget. Allows user to listen for
|
||||
click events on the button and trigger backend code when the clicks are fired.
|
||||
Represents an image in the frontend using a widget.
|
||||
"""
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copyright (c) 2013, the IPython Development Team.
|
||||
@ -33,4 +32,4 @@ class ImageWidget(DOMWidget):
|
||||
|
||||
value = Bytes()
|
||||
def _value_changed(self, name, old, new):
|
||||
self._b64value = base64.b64encode(new)
|
||||
self._b64value = base64.b64encode(new)
|
||||
|
Loading…
Reference in New Issue
Block a user