I am trying to use the axvline function to plot datetime.time values and seeing this error. please help.
time_ret = datetime.time(11,15)
ax1 = axvline(time_ret, ...)
The error I get:
TypeError: '>' not supported between instances of 'float' and 'datetime.time'
I see a lot of solution to this issue but all of them answer to this issue by plotting axvline on datetime.date.
I have added a code for the reference. Please help