Skip to content

Commit f0ee5f3

Browse files
committed
Revert "Disable new export for now"
This reverts commit 25d9af1.
1 parent b41acfa commit f0ee5f3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/qcodes/dataset/exporters/export_to_xarray.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,7 @@ def _load_to_xarray_dataset_dict_no_metadata(
8383
and sub_dict[name].shape == dataset.description.shapes[name]
8484
)
8585

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
86+
if shape_is_consistent and use_multi_index != "always":
9087
_LOG.info("Exporting %s to xarray using direct method", name)
9188
xr_dataset_dict[name] = _xarray_data_set_direct(dataset, name, sub_dict)
9289
else:

0 commit comments

Comments
 (0)