Skip to content

Commit c4ba665

Browse files
v0.6.24
1 parent 84d3c06 commit c4ba665

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "spotPython"
10-
version = "0.6.23"
10+
version = "0.6.24"
1111
authors = [
1212
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
1313
]

src/spotPython/plot/validation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ def plot_roc_from_dataframes(
167167
else:
168168
model_name = None
169169
RocCurveDisplay.from_predictions(y_test, y_pred, ax=ax, alpha=alpha, name=model_name)
170-
plt.show()
170+
if show:
171+
plt.show()
171172

172173

173174
def plot_confusion_matrix(

0 commit comments

Comments
 (0)