From ce3c4e07ca10a97614a9c39c36ac875dd02cec94 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 29 Jun 2020 09:24:56 -0700 Subject: [PATCH] removed arguments --- sklearn/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sklearn/conftest.py b/sklearn/conftest.py index b00b9c11a3f70..8a98921342efa 100644 --- a/sklearn/conftest.py +++ b/sklearn/conftest.py @@ -20,7 +20,7 @@ def pyplot(): The ``matplotlib.pyplot`` module. """ matplotlib = pytest.importorskip('matplotlib') - matplotlib.use('agg', warn=False, force=True) + matplotlib.use('agg') pyplot = pytest.importorskip('matplotlib.pyplot') yield pyplot pyplot.close('all')