Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/json_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ def default(self, o):
elif type(o).__name__ == "ndarray": # avoid numpy import
return o.tolist()

elif hasattr(o, "item"): # numpy scalar (int64, float64, bool_, etc.)
Comment thread
mcoughlin marked this conversation as resolved.
Outdated
return o.item()

elif type(o).__name__ == "DataFrame": # avoid pandas import
o.columns = o.columns.droplevel("channel") # flatten MultiIndex
return o.to_dict(orient="index")
Expand Down
Loading