Skip to content

Commit

Permalink
awkward main has 'None' str as possibility
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis committed Sep 25, 2023
1 parent e5b0ce8 commit c6494ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dask_awkward/lib/optimize.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def _necessary_columns(dsk: HighLevelGraph) -> dict[str, list[str]]:

necessary_columns = []
for key in sorted(touched_data_keys):
if key == name:
if key == name or key == "None":
continue

layer, column = key.split(".", 1)
Expand Down

0 comments on commit c6494ff

Please sign in to comment.