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
The collections.abc.ByteString type has been marked as deprecated since Python 3.12 and is slated to be removed in Python 3.14 (it has already been removed in the alpha releases, in fact).
Deprecated since version 3.12, will be removed in version 3.14: The ByteString ABC has been deprecated. For use in typing, prefer a union, like bytes | bytearray, or collections.abc.Buffer. For use as an ABC, prefer Sequence or collections.abc.Buffer.
The
collections.abc.ByteString
type has been marked as deprecated since Python 3.12 and is slated to be removed in Python 3.14 (it has already been removed in the alpha releases, in fact).This is currently used in the edid parser:
jc/parsers/pyedid/edid.py
jc/parsers/pyedid/helpers/edid_helper.py
The text was updated successfully, but these errors were encountered: