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 1093f71 commit 0361de4Copy full SHA for 0361de4
lib/iris/coords.py
@@ -1452,7 +1452,7 @@ def points(self, points):
1452
self._values = points
1453
1454
@property
1455
- def bounds(self) -> RealData:
+ def bounds(self) -> Optional[RealData]:
1456
"""
1457
The coordinate bounds values, as a NumPy array,
1458
or None if no bound values are defined.
@@ -1578,7 +1578,7 @@ def core_points(self) -> RealOrLazyData:
1578
1579
return super()._core_values()
1580
1581
- def core_bounds(self) -> RealOrLazyData:
+ def core_bounds(self) -> Optional[RealOrLazyData]:
1582
1583
The points array at the core of this coord, which may be a NumPy array
1584
or a dask array.
0 commit comments