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
ISO 8601 specifies that the date and time portion of a timestamp is separated by a "T", but python's datetime.isoformat allows any character to separate them. To comply with ISO8601, line 650 should be changed to include a "T" in between the date and the time. Since this also complies with datetime.isoformat, there is no reason not to change this.
The text was updated successfully, but these errors were encountered:
ISO 8601 specifies that the date and time portion of a timestamp is separated by a "T", but python's datetime.isoformat allows any character to separate them. To comply with ISO8601, line 650 should be changed to include a "T" in between the date and the time. Since this also complies with datetime.isoformat, there is no reason not to change this.
The text was updated successfully, but these errors were encountered: