Force non-date values to 'not a time' that still let's column be datetime

This commit is contained in:
benjamin melançon 2021-05-28 14:24:07 -04:00
parent d952f11350
commit df64927f5a
2 changed files with 6 additions and 3 deletions

View file

@ -66,7 +66,7 @@ timelog = timelog.explode("description").reset_index()
if debug:
mess = copy.deepcopy(timelog)
timelog["started"] = pd.to_datetime(timelog["started"]).dt.tz_convert("US/Eastern")
timelog["started"] = pd.to_datetime(timelog["started"], errors='coerce').dt.tz_convert("US/Eastern")
timelog["recorded"] = pd.to_datetime(timelog["recorded"]).dt.tz_convert("US/Eastern")
latest_recorded = settings.pomodoro_latest_recorded()