We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e9117f commit 1eebe2aCopy full SHA for 1eebe2a
lib/iris/coords.py
@@ -1664,7 +1664,7 @@ def points(self, points):
1664
self._values = points
1665
1666
@property
1667
- def bounds(self) -> RealData:
+ def bounds(self) -> Optional[RealData]:
1668
"""
1669
The coordinate bounds values, as a NumPy array,
1670
or None if no bound values are defined.
@@ -1790,7 +1790,7 @@ def core_points(self) -> RealOrLazyData:
1790
1791
return super()._core_values()
1792
1793
- def core_bounds(self) -> RealOrLazyData:
+ def core_bounds(self) -> Optional[RealOrLazyData]:
1794
1795
The points array at the core of this coord, which may be a NumPy array
1796
or a dask array.
0 commit comments