Skip to content

Commit

Permalink
PATCH: fixed suppress warnings error
Browse files Browse the repository at this point in the history
  • Loading branch information
TomMonks committed Apr 23, 2024
1 parent f04d7ad commit 4e93cb1
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions more_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,7 @@ def more_plotly(data, x_label, percentiles=(0.05, 0.95), suppress_warnings=False
Returns:
-------
plotly.graph_objects.Figure: The Plotly figure object.
See Also:
---------
more_plot()
Refs:
-----
Expand Down Expand Up @@ -177,7 +173,7 @@ def more_plotly(data, x_label, percentiles=(0.05, 0.95), suppress_warnings=False
name="CI 5th Percentile") # Orange


elif not surpress_warnings:
elif not suppress_warnings:
warnings.warn(WARN)

note = 'Shaded regions around vertical lines are 95% Confidence Intervals'
Expand Down

0 comments on commit 4e93cb1

Please sign in to comment.