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 noticed the following deprecation warning when using odxtools with Python 3.12:
odxtools/specialdatagroup.py:25: DeprecationWarning: Testing an element's truth value will always return True in future versions. Use specific 'len(elem)' or 'elem is not None' test instead.
if caption_elem := et_element.find("SDG-CAPTION"):
I noticed the following deprecation warning when using odxtools with Python 3.12:
which is caused by the following line:
odxtools/odxtools/specialdatagroup.py
Line 25 in a602a79
This can be fixed as follows:
There are at least two more similar issues:
odxtools/odxtools/subcomponentparamconnector.py
Line 46 in a602a79
and
odxtools/odxtools/subcomponentparamconnector.py
Line 55 in a602a79
which can be fixed similarly, e.g.:
The text was updated successfully, but these errors were encountered: