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 c71190a commit af84640Copy full SHA for af84640
lib/iris/coords.py
@@ -1711,7 +1711,7 @@ def points(self, points):
1711
self._values = points
1712
1713
@property
1714
- def bounds(self) -> RealData:
+ def bounds(self) -> Optional[RealData]:
1715
"""
1716
The coordinate bounds values, as a NumPy array,
1717
or None if no bound values are defined.
@@ -1837,7 +1837,7 @@ def core_points(self) -> RealOrLazyData:
1837
1838
return super()._core_values()
1839
1840
- def core_bounds(self) -> RealOrLazyData:
+ def core_bounds(self) -> Optional[RealOrLazyData]:
1841
1842
The points array at the core of this coord, which may be a NumPy array
1843
or a dask array.
0 commit comments