Skip to content

Commit

Permalink
💨 formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasvdd committed Feb 13, 2024
1 parent 374a426 commit a747bb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/test_figure_resampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ def test_replace_properties(float_series):


def test_nan_retained_input(float_series):
# NEW from plotly-resampler >0.9.2 => we retain the NaNs in the input data and
# NEW from plotly-resampler >0.9.2 => we retain the NaNs in the input data and
# the NaN handling is delegated to the aggregators
# see: https://plotly.com/python/subplots/#custom-sized-subplot-with-subplot-titles
base_fig = make_subplots(
Expand Down Expand Up @@ -601,7 +601,7 @@ def test_hf_text_and_hf_hovertext_and_hf_marker_size_nans():
y = y_orig.copy()
y[::101] = np.nan

# NEW from plotly-resampler >0.9.2 => we retain the NaNs in the input data and
# NEW from plotly-resampler >0.9.2 => we retain the NaNs in the input data and
# the NaN handling is delegated to the aggregators
y_nonan = y # we do not remove the NaNs anymore

Expand Down
4 changes: 2 additions & 2 deletions tests/test_figurewidget_resampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def test_replace_figure(float_series):


def test_nan_removed_input(float_series):
# NEW from plotly-resampler >0.9.2 => we retain the NaNs in the input data and
# NEW from plotly-resampler >0.9.2 => we retain the NaNs in the input data and
# the NaN handling is delegated to the aggregators
# see: https://plotly.com/python/subplots/#custom-sized-subplot-with-subplot-titles
base_fig = make_subplots(
Expand Down Expand Up @@ -431,7 +431,7 @@ def test_hf_text_and_hf_hovertext_and_hf_marker_size_nans():
y = y_orig.copy()
y[::101] = np.nan

# NEW from plotly-resampler >0.9.2 => we retain the NaNs in the input data and
# NEW from plotly-resampler >0.9.2 => we retain the NaNs in the input data and
# the NaN handling is delegated to the aggregators
y_nonan = y # we do not remove the NaNs anymore

Expand Down

0 comments on commit a747bb5

Please sign in to comment.