Skip to content
Snippets Groups Projects
Commit 59a4b0a3 authored by David Hammer's avatar David Hammer
Browse files

Make desired output order tuple for LRU cache to hash

Discovered by Thomas K
parent 67800925
No related branches found
No related tags found
1 merge request!101Hotfixes from BUD summer 2024
...@@ -253,7 +253,7 @@ class BaseKernelRunner: ...@@ -253,7 +253,7 @@ class BaseKernelRunner:
self._output_transpose = None self._output_transpose = None
else: else:
self._output_transpose = misc.transpose_order( self._output_transpose = misc.transpose_order(
("f", "ss", "fs"), order.split("-") ("f", "ss", "fs"), tuple(order.split("-"))
) )
if config.has("corrections.badPixels.maskingValue"): if config.has("corrections.badPixels.maskingValue"):
......
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