Skip to content

Commit

Permalink
Merge branch 'feature/qplt_colorbar' of https://github.com/ukmo-ccbun…
Browse files Browse the repository at this point in the history
…ney/iris into feature/qplt_colorbar

* 'feature/qplt_colorbar' of https://github.com/ukmo-ccbunney/iris:
  [pre-commit.ci] auto fixes from pre-commit.com hooks
  • Loading branch information
ukmo-ccbunney committed Oct 9, 2024
2 parents 2186bda + 1985e12 commit 1c9d8d4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/iris/quickplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 1c9d8d4

Please sign in to comment.