You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expected either None or '', but a datetime was completely unanticipated. A converter for None-like inputs might do the trick, or '' could be treated as a string.
The text was updated successfully, but these errors were encountered:
two solutions, either use a different module, like from dateparser import parse as duparse or use something like this, if isinstance(s, str) and s.strip() != '': in line 117
I expected either
None
or''
, but a datetime was completely unanticipated. A converter for None-like inputs might do the trick, or''
could be treated as a string.The text was updated successfully, but these errors were encountered: