@@ -107,7 +107,8 @@ class Scatter(widgets.Widget):
107
107
y = Array (default_value = None ).tag (sync = True , ** array_sequence_serialization )
108
108
z = Array (default_value = None ).tag (sync = True , ** array_sequence_serialization )
109
109
aux = Array (default_value = None , allow_none = True ).tag (sync = True , ** array_sequence_serialization )
110
- aux_scale = traitlets .Instance (scales .Scale , default_value = None , allow_none = True ).tag (sync = True , ** widgets .widget_serialization )
110
+ aux_scale = traitlets .Instance (scales .Scale , default_value = None ,
111
+ allow_none = True ).tag (sync = True , ** widgets .widget_serialization )
111
112
vx = Array (default_value = None , allow_none = True ).tag (sync = True , ** array_sequence_serialization )
112
113
vy = Array (default_value = None , allow_none = True ).tag (sync = True , ** array_sequence_serialization )
113
114
vz = Array (default_value = None , allow_none = True ).tag (sync = True , ** array_sequence_serialization )
@@ -129,9 +130,12 @@ class Scatter(widgets.Widget):
129
130
],
130
131
default_value = 7 ,
131
132
).tag (sync = True )
132
- size_x_scale = traitlets .Instance (scales .Scale , default_value = None , allow_none = True ).tag (sync = True , ** widgets .widget_serialization )
133
- size_y_scale = traitlets .Instance (scales .Scale , default_value = None , allow_none = True ).tag (sync = True , ** widgets .widget_serialization )
134
- size_z_scale = traitlets .Instance (scales .Scale , default_value = None , allow_none = True ).tag (sync = True , ** widgets .widget_serialization )
133
+ size_x_scale = traitlets .Instance (scales .Scale , default_value = None ,
134
+ allow_none = True ).tag (sync = True , ** widgets .widget_serialization )
135
+ size_y_scale = traitlets .Instance (scales .Scale , default_value = None ,
136
+ allow_none = True ).tag (sync = True , ** widgets .widget_serialization )
137
+ size_z_scale = traitlets .Instance (scales .Scale , default_value = None ,
138
+ allow_none = True ).tag (sync = True , ** widgets .widget_serialization )
135
139
color = Array (default_value = "red" , allow_none = True ).tag (sync = True , ** color_serialization )
136
140
color_selected = traitlets .Union (
137
141
[Array (default_value = None , allow_none = True ).tag (sync = True , ** color_serialization ), Unicode ().tag (sync = True )],
0 commit comments