Trying to convert time object to str, and then to datetime, but it's telling me that the utc string is not in iso (when I know it is). Code and error are below. Any advice would be appreciated.
times = timeEntry.get()
t = Time(times, format = 'jd', scale = 'utc')
utc = dt.strptime(str(t.utc.iso), "iso")
ValueError: time data '2021-02-06 14:38:24.000' does not match format 'iso'