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 b41acfa commit f0ee5f3Copy full SHA for f0ee5f3
src/qcodes/dataset/exporters/export_to_xarray.py
@@ -83,10 +83,7 @@ def _load_to_xarray_dataset_dict_no_metadata(
83
and sub_dict[name].shape == dataset.description.shapes[name]
84
)
85
86
- if shape_is_consistent and use_multi_index != "always" and False:
87
- # disabled for now to think about how to best handle
88
- # parameters that are measured in decreasing order
89
- # where this export is inverted compared to the original export order
+ if shape_is_consistent and use_multi_index != "always":
90
_LOG.info("Exporting %s to xarray using direct method", name)
91
xr_dataset_dict[name] = _xarray_data_set_direct(dataset, name, sub_dict)
92
else:
0 commit comments