Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hainm committed Dec 4, 2024
1 parent cd15179 commit bfea990
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nglview/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -1412,10 +1412,10 @@ class Fullscreen(DOMWidget):
_view_module = Unicode("nglview-js-widgets").tag(sync=True)
_view_module_version = Unicode(__frontend_version__).tag(sync=True)
_model_name = Unicode("FullscreenModel").tag(sync=True)
_model_module = Unicode("nglview-js-widgets").tag(sync(True))
_model_module_version = Unicode(__frontend_version__).tag(sync(True))
_model_module = Unicode("nglview-js-widgets").tag(sync=True)
_model_module_version = Unicode(__frontend_version__).tag(sync=True)

_is_fullscreen = Bool().tag(sync(True))
_is_fullscreen = Bool().tag(sync=True)

def __init__(self, target, views):
super().__init__()
Expand Down

0 comments on commit bfea990

Please sign in to comment.