From 200318d0a40c7a619c029b23fd25120dbd74c5a1 Mon Sep 17 00:00:00 2001 From: Gregory Lee Date: Wed, 19 Jan 2022 23:18:13 -0500 Subject: [PATCH] flake8 fix --- python/cucim/src/cucim/skimage/_shared/_dependency_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cucim/src/cucim/skimage/_shared/_dependency_checks.py b/python/cucim/src/cucim/skimage/_shared/_dependency_checks.py index 5f06faeeb..57e12618e 100644 --- a/python/cucim/src/cucim/skimage/_shared/_dependency_checks.py +++ b/python/cucim/src/cucim/skimage/_shared/_dependency_checks.py @@ -6,6 +6,6 @@ # will fail with # ImportError: Failed to import any qt binding # if only matplotlib-base is installed - from matplotlib import pyplot + from matplotlib import pyplot # noqa except ImportError: has_mpl = False