Skip to content

Commit f006fb9

Browse files
authored
Merge pull request #591 from rpsimeon34/patch-1
fix: Add including_unknown kwarg to values_astype
2 parents 75d1999 + 4c5ce66 commit f006fb9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/dask_awkward/lib/structure.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -961,6 +961,7 @@ def unzip(
961961
def values_astype(
962962
array: Array,
963963
to: np.dtype | str,
964+
including_unknown: bool = False,
964965
highlevel: bool = True,
965966
behavior: Mapping | None = None,
966967
attrs: Mapping[str, Any] | None = None,
@@ -971,6 +972,7 @@ def values_astype(
971972
ak.values_astype,
972973
array,
973974
to=to,
975+
including_unknown=including_unknown,
974976
behavior=behavior,
975977
label="values-astype",
976978
attrs=attrs,

0 commit comments

Comments
 (0)