I want to read the contents of a MDF file
from asammdf import MDF
mdf_obj = MDF('READING_238_02.03.2023_1021.MDF')
df = mdf_obj.to_dataframe()
But I have this error
---> 38 df = mdf_obj.to_dataframe()
ValueError: array-shape mismatch in array 1 ("CAN_DataFrame.DataLength")
How to export MDF to a dataframe?