We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d24bef commit 42b9ba4Copy full SHA for 42b9ba4
src/asammdf/blocks/mdf_v4.py
@@ -8104,8 +8104,8 @@ def _get_array(
8104
shape = (shape[0], *shape[1:][::-1])
8105
vals = vals.reshape(shape)
8106
8107
- axes = (0, *reversed(range(1, len(shape))))
8108
- vals = transpose(vals, axes=axes)
+ arr_axes = (0, *reversed(range(1, len(shape))))
+ vals = transpose(vals, axes=arr_axes)
8109
8110
cycles_nr = len(vals)
8111
src/asammdf/version.py
@@ -1,3 +1,3 @@
1
"""asammdf version module"""
2
3
-__version__ = "8.8.0.dev19"
+__version__ = "8.8.0.dev20"
0 commit comments