(attr_name)
| 644 | if _array_expr_enabled(): |
| 645 | |
| 646 | def raise_not_implemented_error(attr_name): |
| 647 | def inner_func(*args, **kwargs): |
| 648 | raise NotImplementedError( |
| 649 | f"Function {attr_name} is not implemented for dask-expr." |
| 650 | ) |
| 651 | |
| 652 | return inner_func |
| 653 | |
| 654 | try: |
| 655 | from dask.array._array_expr import ( # type: ignore[assignment, no-redef] |