We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This library:
>>> from adafruit_datetime import datetime >>> datetime.fromisoformat('2000-01-01T00:30:27Z') Traceback (most recent call last): File "adafruit_datetime.py", line 1019, in fromisoformat File "adafruit_datetime.py", line 985, in _parse_iso_string ValueError: The above exception was the direct cause of the following exception: Traceback (most recent call last): File "adafruit_datetime.py", line 1386, in fromisoformat File "adafruit_datetime.py", line 1027, in fromisoformat ValueError: Invalid isoformat string: '00:30:27Z' The above exception was the direct cause of the following exception: Traceback (most recent call last): File "<stdin>", line 1, in <module> File "adafruit_datetime.py", line 1391, in fromisoformat ValueError: Invalid isoformat string: '2000-01-01T00:30:27Z' >>>
Python 11:
❯ python Python 3.11.1 (main, Jan 5 2023, 23:03:26) [Clang 14.0.0 (clang-1400.0.29.202)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from datetime import datetime >>> datetime.fromisoformat("2022-01-01T00:01:00Z") datetime.datetime(2022, 1, 1, 0, 1, tzinfo=datetime.timezone.utc) >>>
The text was updated successfully, but these errors were encountered:
Workaround for adafruit/Adafruit_CircuitPython_datetime#22
43c54d1
I have run into this issue too. Here is my mitigation, but it is definitely not an ideal fix: skjdghsdjgsdj/matrixportal-babybuddy@43c54d1
Sorry, something went wrong.
b5729c7
No branches or pull requests
This library:
Python 11:
The text was updated successfully, but these errors were encountered: