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 28d1311 commit 8820c40Copy full SHA for 8820c40
lib/iris/coords.py
@@ -1682,7 +1682,7 @@ def points(self, points):
1682
self._values = points
1683
1684
@property
1685
- def bounds(self) -> RealData:
+ def bounds(self) -> Optional[RealData]:
1686
"""
1687
The coordinate bounds values, as a NumPy array,
1688
or None if no bound values are defined.
@@ -1808,7 +1808,7 @@ def core_points(self) -> RealOrLazyData:
1808
1809
return super()._core_values()
1810
1811
- def core_bounds(self) -> RealOrLazyData:
+ def core_bounds(self) -> Optional[RealOrLazyData]:
1812
1813
The points array at the core of this coord, which may be a NumPy array
1814
or a dask array.
0 commit comments