Skip to content

Commit

Permalink
default failure report
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis committed Dec 1, 2023
1 parent 06fb97e commit 81bf584
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dask_awkward/lib/io/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,9 +547,9 @@ def on_failure_default(
return ak.Array(
[
{
"args": [str(a) for a in args],
"kwargs": [[k, str(v)] for k, v in kwargs.items()],
"exception": str(type(exception).__name__),
"args": [repr(a) for a in args],
"kwargs": [[k, repr(v)] for k, v in kwargs.items()],
"exception": type(exception).__name__,
"message": str(exception),
},
],
Expand Down

0 comments on commit 81bf584

Please sign in to comment.