Skip to content

Commit 060a338

Browse files
committed
🧹 cleanup comments
1 parent 232416b commit 060a338

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

plotly_resampler/figure_resampler/figure_resampler_interface.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1169,7 +1169,6 @@ def add_traces(
11691169
assert trace is not None
11701170
data[i] = trace
11711171

1172-
# return super(self._figure_class, self).add_traces(data, **traces_kwargs)
11731172
return super().add_traces(data, **traces_kwargs)
11741173

11751174
def _clear_figure(self):

plotly_resampler/figure_resampler/jupyter_dash_persistent_inline_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _display_inline_output(self, dashboard_url, width, height):
7575
)
7676

7777
# Get the image from the dashboard and encode it as base64
78-
fig = self.fig # is stored there in the show_dash method
78+
fig = self.fig # is stored in the show_dash method
7979
f_width = 1000 if fig.layout.width is None else fig.layout.width
8080
fig_base64 = base64.b64encode(
8181
fig.to_image(format="png", width=f_width, scale=1, height=fig.layout.height)

0 commit comments

Comments
 (0)