Skip to content

Commit d4273eb

Browse files
committed
Lint
1 parent 17a5e82 commit d4273eb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/vitessce/widget.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -599,10 +599,10 @@ class VitesscePlugin:
599599
"""
600600

601601
#: The ES module string for the plugin.
602-
plugin_esm = DEFAULT_PLUGIN_ESM # type: str
602+
plugin_esm = DEFAULT_PLUGIN_ESM # type: str
603603

604604
#: 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
606606

607607
def on_config_change(self, new_config):
608608
"""
@@ -635,12 +635,12 @@ class VitessceWidget(anywidget.AnyWidget):
635635
# Widget properties are defined as traitlets. Any property tagged with `sync=True`
636636
# is automatically synced to the frontend *any* time it changes in Python.
637637
# It is synced back to Python from the frontend *any* time the model is touched.
638-
638+
639639
#: 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
641641

642642
#: The VitessceConfig instance used to create this widget. Not synced upon interactions.
643-
config = None # type: vitessce.config.VitessceConfig
643+
config = None # type: vitessce.config.VitessceConfig
644644

645645
height = Int(600).tag(sync=True)
646646
theme = Unicode('auto').tag(sync=True)
@@ -667,7 +667,7 @@ def __init__(self, config, height=600, theme='auto', uid=None, port=None, proxy=
667667
""" """
668668
"""
669669
Construct a new Vitessce widget. Not intended to be instantiated directly; instead, use ``VitessceConfig.widget``.
670-
670+
671671
:param config: A view config instance.
672672
:type config: VitessceConfig
673673
:param str theme: The theme name, either "light" or "dark". By default, "auto", which selects light or dark based on operating system preferences.

0 commit comments

Comments
 (0)