Skip to content

Commit

Permalink
fix parquet list separator (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis authored Aug 24, 2023
1 parent 1a017e7 commit 0d7ba2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dask_awkward/lib/io/parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def from_parquet(
listsep = "list.item"
unnamed_root = False
for c in parquet_columns:
if ".list.element." in c:
if ".list.element" in c:
listsep = "list.element"
break
if c.startswith("."):
Expand Down

0 comments on commit 0d7ba2c

Please sign in to comment.