@@ -174,7 +174,9 @@ def make_broadcastable( # noqa: C901
174
174
where the ``self`` argument is present only if ``f`` was a class method.
175
175
``fr`` applies ``f`` along the ``broadcast_dimension`` of ``data``.
176
176
The ``\*args`` and ``\*\*kwargs`` match those passed to ``f``, and retain
177
- the same interpretations and effects on the result.
177
+ the same interpretations and effects on the result. If ``data`` provided to
178
+ ``fr`` is not an ``xarray.DataArray``, it will fall back on the behaviour
179
+ of ``f`` (and ignore the ``broadcast_dimension`` argument).
178
180
179
181
See the docstring of ``make_broadcastable_inner`` in the source code for a
180
182
more explicit explanation of the returned decorator.
@@ -268,6 +270,9 @@ def inner_clsmethod( # type: ignore[valid-type]
268
270
broadcast_dimension : str = "space" ,
269
271
** kwargs : KeywordArgs .kwargs ,
270
272
) -> xr .DataArray :
273
+ # Preserve original functionality
274
+ if not isinstance (data , xr .DataArray ):
275
+ return f (self , data , * args , ** kwargs )
271
276
return apply_along_da_axis (
272
277
lambda input_1D : f (self , input_1D , * args , ** kwargs ),
273
278
data ,
@@ -297,6 +302,9 @@ def inner( # type: ignore[valid-type]
297
302
broadcast_dimension : str = "space" ,
298
303
** kwargs : KeywordArgs .kwargs ,
299
304
) -> xr .DataArray :
305
+ # Preserve original functionality
306
+ if not isinstance (data , xr .DataArray ):
307
+ return f (data , * args , ** kwargs )
300
308
return apply_along_da_axis (
301
309
lambda input_1D : f (input_1D , * args , ** kwargs ),
302
310
data ,
0 commit comments