Skip to content

Commit

Permalink
remember to commit
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed Apr 5, 2024
1 parent c57693c commit 0c367df
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/dask_awkward/lib/io/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
typetracer_array,
)
from dask_awkward.lib.io.columnar import ColumnProjectionMixin
from dask_awkward.lib.utils import render_buffer_key
from dask_awkward.lib.utils import form_with_unique_keys, render_buffer_key
from dask_awkward.utils import first, second

if TYPE_CHECKING:
Expand Down Expand Up @@ -626,11 +626,12 @@ def from_map(
# so here we start with a blank report
io_func = func
array_meta, report = typetracer_with_report(
io_func.form,
form_with_unique_keys(io_func.form, "@"),
highlevel=True,
behavior=io_func.behavior,
buffer_key=render_buffer_key,
)
report.commit(name)
array_meta._report = {
report
} # column tracking report, not failure report, below
Expand Down

0 comments on commit 0c367df

Please sign in to comment.