Skip to content

Commit

Permalink
fix ak2 convert class name msg (#1544)
Browse files Browse the repository at this point in the history
  • Loading branch information
Moelf authored Jul 18, 2022
1 parent 99cc3ed commit b620428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/awkward/operations/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ def to_list(array):
ak._v2.highlevel.ArrayBuilder,
),
):
raise TypeError("use ak._v2.operations.convert.to_list for v2 arrays (for now)")
raise TypeError("use ak._v2.operations.to_list for v2 arrays (for now)")

elif isinstance(array, dict):
return {n: to_list(x) for n, x in array.items()}
Expand Down

0 comments on commit b620428

Please sign in to comment.