diff --git a/lib/iris/coords.py b/lib/iris/coords.py index 28b567fe81..b3a2e22297 100644 --- a/lib/iris/coords.py +++ b/lib/iris/coords.py @@ -1664,7 +1664,7 @@ def points(self, points): self._values = points @property - def bounds(self) -> RealData: + def bounds(self) -> Optional[RealData]: """ The coordinate bounds values, as a NumPy array, or None if no bound values are defined. @@ -1790,7 +1790,7 @@ def core_points(self) -> RealOrLazyData: """ return super()._core_values() - def core_bounds(self) -> RealOrLazyData: + def core_bounds(self) -> Optional[RealOrLazyData]: """ The points array at the core of this coord, which may be a NumPy array or a dask array.