Skip to content

Commit f58a5c6

Browse files
radka-jsgreenbury
andauthored
Update autoemulate/core/plotting.py
Co-authored-by: Sam Greenbury <[email protected]>
1 parent 303fb19 commit f58a5c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoemulate/core/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def plot_xy(
100100
if error_style.lower() not in ["bars", "fill"]:
101101
msg = "error_style must be one of ['bars', 'fill']"
102102
raise ValueError(msg)
103-
if error_style == "bars":
103+
if error_style.lower() == "bars":
104104
ax.errorbar(
105105
x_sorted,
106106
y_pred_sorted,

0 commit comments

Comments
 (0)