Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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