DataProfiler
DataProfiler copied to clipboard
fix: datetime profile JSON encoding bug
This fix pertains to my recently created issue here. The JSON encoder was only expecting/being tested for pd.Timestamp
as values for _dt_obj_min
and _dt_obj_max
, but I ran into a case where those fields were datetime.datetime
objects.
Running the newly created test on the lastest release reproduces the bug, running on this branch resolves it.