From 02df905ba7e1ae7440b78041791642c9eb8f47a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Al=C3=A1n=20Mu=C3=B1oz?= <amuoz@ed.ac.uk> Date: Wed, 29 Jun 2022 18:18:53 +0100 Subject: [PATCH] bugfic(image): change dimorder from sets to list --- aliby/io/image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aliby/io/image.py b/aliby/io/image.py index 32e0a382..83571b3e 100644 --- a/aliby/io/image.py +++ b/aliby/io/image.py @@ -39,7 +39,7 @@ class ImageLocal: # Mark non-existent dimensions for padding base = "TCZXY" self.base = base - self.ids = {base.index(i) for i in dimorder} + self.ids = [base.index(i) for i in dimorder] self._dimorder = dimorder -- GitLab