Reproducible example: ```python import xarray as xr from flox.xarray import xarray_reduce labels = xr.DataArray( [1, 2, 3, 1, 2, 3, 0, 0, 0], dims="x", name="label", ) finalize_kwargs = dict(q=[0.1,0.5,0.9], method = "hazen") da = xr.ones_like(labels) xarray_reduce(da, labels, func="quantile", method = "blockwise", **finalize_kwargs) ``` Output: ```python Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: flox.xarray.xarray_reduce() got multiple values for keyword argument 'method' ```