From f684e0eaa2b479bed8b2ea4a1b5e7f69acb96404 Mon Sep 17 00:00:00 2001 From: Ajey Pai K Date: Wed, 20 Dec 2023 12:00:14 +0100 Subject: [PATCH] Remove unwanted comments --- tests/test_writers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_writers.py b/tests/test_writers.py index c7d07172..d94fae2a 100644 --- a/tests/test_writers.py +++ b/tests/test_writers.py @@ -33,9 +33,9 @@ def _color_dict_to_clut(color_map: dict[int, str]) -> tuple[np.ndarray, dict[int color_map = { - 1: "green", # Green for stroma - 2: "red", # Red for tumor - 3: "yellow", # Yellow for ignore + 1: "green", + 2: "red", + 3: "yellow", } clut, rgb_color_map = _color_dict_to_clut(color_map)