Force non-date values to 'not a time' that still let's column be datetime
This commit is contained in:
parent
d952f11350
commit
df64927f5a
2 changed files with 6 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue