Skip to content
Snippets Groups Projects
Commit 02df905b authored by Alán Muñoz's avatar Alán Muñoz
Browse files

bugfic(image): change dimorder from sets to list

parent 13344669
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ class ImageLocal: ...@@ -39,7 +39,7 @@ class ImageLocal:
# Mark non-existent dimensions for padding # Mark non-existent dimensions for padding
base = "TCZXY" base = "TCZXY"
self.base = base self.base = base
self.ids = {base.index(i) for i in dimorder} self.ids = [base.index(i) for i in dimorder]
self._dimorder = dimorder self._dimorder = dimorder
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment