We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 451c311 commit a0637f0Copy full SHA for a0637f0
plotly_resampler/figure_resampler/figurewidget_resampler.py
@@ -326,3 +326,8 @@ def reload_data(self):
326
)
327
# TODO: when we know which traces have changed we can use
328
# a new -> `update_xaxis_str` argument.
329
+
330
+ def __reduce__(self):
331
+ # Needed for pickling
332
+ # Specifically set the class name, as the metaclass is not easily picklable
333
+ return FigureWidgetResampler, *list(super().__reduce__())[1:]
0 commit comments