Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xarray_beam/_src/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ def from_ptransform(
chunks = normalize_chunks(chunks, template) # pyrefly: ignore[bad-assignment]
ptransform = ptransform | label >> beam.MapTuple(
functools.partial(
_normalize_and_validate_chunk, template, chunks, split_vars
_normalize_and_validate_chunk, template, chunks, split_vars # pyrefly: ignore[bad-argument-type]
)
)
return cls(template, chunks, split_vars, ptransform) # pyrefly: ignore[bad-argument-type]
Expand Down
Loading