From 1985e125aeca6d81ee7402c80012597fc21c932d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 08:16:49 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- lib/iris/quickplot.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/iris/quickplot.py b/lib/iris/quickplot.py index f525f276e7..6f0e649bdf 100644 --- a/lib/iris/quickplot.py +++ b/lib/iris/quickplot.py @@ -90,11 +90,15 @@ def _label(cube, mode, result=None, ndims=2, coords=None, axes=None, colorbar=Tr raise ValueError(msg) -def _label_with_bounds(cube, result=None, ndims=2, coords=None, axes=None, colorbar=True): +def _label_with_bounds( + cube, result=None, ndims=2, coords=None, axes=None, colorbar=True +): _label(cube, iris.coords.BOUND_MODE, result, ndims, coords, axes, colorbar) -def _label_with_points(cube, result=None, ndims=2, coords=None, axes=None, colorbar=True): +def _label_with_points( + cube, result=None, ndims=2, coords=None, axes=None, colorbar=True +): _label(cube, iris.coords.POINT_MODE, result, ndims, coords, axes, colorbar)