Skip to content

Commit

Permalink
Merge pull request #77 from jusschwitalla/dev-fix-numpy-encoder
Browse files Browse the repository at this point in the history
fix numpy encoder
  • Loading branch information
philross authored Sep 22, 2023
2 parents a694455 + 9f2bdd8 commit 921c467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BenchmarkManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,4 +356,4 @@ def default(self, o: any):
return float(o)
if isinstance(o, np.ndarray):
return o.tolist()
return super(NumpyEncoder).default(o)
return super().default(o)

0 comments on commit 921c467

Please sign in to comment.