Skip to content

Commit

Permalink
chore: drop debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Sep 14, 2023
1 parent 1e54a19 commit bac88ed
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 @@ -423,7 +423,7 @@ def _necessary_columns(dsk: HighLevelGraph) -> dict[str, list[str]]:
layer_to_columns = {}
for name, report in _get_column_reports(dsk).items():
touched_data_keys = {_ for _ in report.data_touched if _ is not None}
print(set(report.shape_touched), set(report.data_touched))

necessary_columns = []
for key in sorted(touched_data_keys):
if key == name:
Expand Down

0 comments on commit bac88ed

Please sign in to comment.