(
func: Callable[..., Dataset | None],
*args: Any,
kwargs: Mapping[str, Any] | None = None,
)
| 14 | |
| 15 | @overload |
| 16 | def map_over_datasets( |
| 17 | func: Callable[..., Dataset | None], |
| 18 | *args: Any, |
| 19 | kwargs: Mapping[str, Any] | None = None, |
| 20 | ) -> DataTree: ... |
| 21 | |
| 22 | |
| 23 | # add an explicit overload for the most common case of two return values |
searching dependent graphs…