Skip to content

Commit f831a0d

Browse files
committed
FIX: use Any for type of fill_value as this seems consistent with other places
1 parent 8ca6cc0 commit f831a0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/core/concat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ def _dataset_concat(
441441
coords: str | list[str],
442442
compat: CompatOptions,
443443
positions: Iterable[Iterable[int]] | None,
444-
fill_value: object = dtypes.NA,
444+
fill_value: Any = dtypes.NA,
445445
join: JoinOptions = "outer",
446446
combine_attrs: CombineAttrsOptions = "override",
447447
) -> T_Dataset:

0 commit comments

Comments
 (0)