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 39a56d9 commit a8186c7Copy full SHA for a8186c7
lib/iris/coords.py
@@ -1698,7 +1698,7 @@ def points(self, points):
1698
self._values = points
1699
1700
@property
1701
- def bounds(self) -> RealData:
+ def bounds(self) -> Optional[RealData]:
1702
"""
1703
The coordinate bounds values, as a NumPy array,
1704
or None if no bound values are defined.
@@ -1824,7 +1824,7 @@ def core_points(self) -> RealOrLazyData:
1824
1825
return super()._core_values()
1826
1827
- def core_bounds(self) -> RealOrLazyData:
+ def core_bounds(self) -> Optional[RealOrLazyData]:
1828
1829
The points array at the core of this coord, which may be a NumPy array
1830
or a dask array.
0 commit comments