Skip to content

Commit

Permalink
Merge pull request #118 from pycroscopy/switch2dict
Browse files Browse the repository at this point in the history
Switch2dict
  • Loading branch information
gduscher authored Feb 26, 2024
2 parents 8fe84a5 + 825c617 commit 7c6f92b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions SciFiReaders/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = '0.11.4'
time = '2024-02-21 17:00:00'
version = '0.11.5'
time = '2024-02-26 17:00:00'
2 changes: 1 addition & 1 deletion SciFiReaders/readers/microscopy/em/tem/emd_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def get_image(self):
data_array = np.empty(self.data_array.shape)
self.data_array.read_direct(data_array)
self.data_array = np.rollaxis(data_array, axis=2)
# np.moveaxis(data_array, source=[0, 1, 2], destination=[2, 0, 1])
# np.moveaxis(data_array, source=[0, 1, 2], destination=[2, 0, 1])

self.datasets[key] = sidpy.Dataset.from_array(self.data_array)
self.datasets[key].data_type = 'image_stack'
Expand Down

0 comments on commit 7c6f92b

Please sign in to comment.