You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vitessce/widget.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -599,10 +599,10 @@ class VitesscePlugin:
599
599
"""
600
600
601
601
#: The ES module string for the plugin.
602
-
plugin_esm=DEFAULT_PLUGIN_ESM# type: str
602
+
plugin_esm=DEFAULT_PLUGIN_ESM# type: str
603
603
604
604
#: A dictionary mapping command name strings to functions. Functions should take two arguments (message, buffers) and return a tuple (response, buffers).
605
-
commands= {} # type: dict
605
+
commands= {} # type: dict
606
606
607
607
defon_config_change(self, new_config):
608
608
"""
@@ -635,12 +635,12 @@ class VitessceWidget(anywidget.AnyWidget):
635
635
# Widget properties are defined as traitlets. Any property tagged with `sync=True`
636
636
# is automatically synced to the frontend *any* time it changes in Python.
637
637
# It is synced back to Python from the frontend *any* time the model is touched.
638
-
638
+
639
639
#: Dictionary representation of the Vitessce JSON configuration. Synced via traitlets upon interactions.
640
-
_config=Dict({}).tag(sync=True) # type: dict
640
+
_config=Dict({}).tag(sync=True) # type: dict
641
641
642
642
#: The VitessceConfig instance used to create this widget. Not synced upon interactions.
0 commit comments