Skip to content

Commit fe3a66e

Browse files
committed
fix tests due to accidentally renamed string
1 parent 5aef3d2 commit fe3a66e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/spatialdata_plot/pl/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2060,9 +2060,9 @@ def _validate_image_render_params(
20602060
(isinstance(channel_list[0], int) and max([abs(ch) for ch in channel_list]) <= len(spatial_element_ch)) # type: ignore[arg-type]
20612061
or all(ch in spatial_element_ch for ch in channel_list)
20622062
):
2063-
element_params[el]["channel_list"] = channel_list
2063+
element_params[el]["channel"] = channel_list
20642064
else:
2065-
element_params[el]["channel_list"] = None
2065+
element_params[el]["channel"] = None
20662066

20672067
element_params[el]["alpha"] = param_dict["alpha"]
20682068

0 commit comments

Comments
 (0)