From 6e07f7ba37a1fab765bf2bd79edaa0da9de5ba83 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 13:57:45 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/plots/test_sklearn.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/plots/test_sklearn.py b/tests/plots/test_sklearn.py index 1b7cb69..ad2e9c5 100644 --- a/tests/plots/test_sklearn.py +++ b/tests/plots/test_sklearn.py @@ -175,7 +175,11 @@ def test_custom_title(tmp_dir, y_true_y_pred_y_score): "confusion_matrix", y_true, y_pred, name="val/cm", title="Val Confusion Matrix" ) live.log_sklearn_plot( - "precision_recall", y_true, y_score, name="val/prc", title="Val Precision Recall" + "precision_recall", + y_true, + y_score, + name="val/prc", + title="Val Precision Recall", ) assert (out / "train" / "cm.json").exists() assert (out / "val" / "cm.json").exists()