An error occurred while creating events: Out of range float values are not JSON compliant. Make sure your data does not contain NaN(s) or +/- Inf! At the "Solution - Hands On Exercise" lab, in the point 5 "Adding events", I have an issue running the code.I have modified the code in order to see what error there in the script and the message say: "An error occurred while creating events: Out of range float values are not JSON compliant. Make sure your data does not contain NaN(s) or +/- Inf!"Please your guidance for this. from cognite.client.data_classes import Eventstore = []# Cycle through each rowfor _,row in df.iterrows(): # Unpack the row _,_,_,Disaster_Type,Disaster_Subtype,_,Country,_,_,_,Location,_,Start_Year,Start_Month,Start_Day,End_Year,End_Month,End_Day = row # Create start and end datetimes start_date = pd.to_datetime(f'{Start_Year}-{Start_Month}-{int(Start_Day)}') end_date = pd.to_datetime(f'{End_Year}-{End_Month}-{int(End_Day)}') # Create metadata metadata = {'Location':Location} # Check for NaN or infinite values in start and end times and replace with None if found start_time = int(start