Skip to content

Commit d121b9e

Browse files
committed
Unpacked dictionary incorrectly
1 parent 0c4cb00 commit d121b9e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/murfey/workflows/clem/register_preprocessing_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def _register_clem_image_series(
181181
clem_img_series.image_search_string = str(output_file.parent / "*tiff")
182182
clem_img_series.data_type = "atlas" if _is_clem_atlas(result) else "grid_square"
183183
clem_img_series.number_of_members = result.number_of_members
184-
for col_name, value in _get_color_flags(result.output_files.keys()):
184+
for col_name, value in _get_color_flags(result.output_files.keys()).items():
185185
setattr(clem_img_series, col_name, value)
186186
clem_img_series.collection_mode = _determine_collection_mode(
187187
result.output_files.keys()

0 commit comments

Comments
 (0)