From b3274b8478e690c7e43d77bb1dec435856c5571d Mon Sep 17 00:00:00 2001 From: OnnoEbbens Date: Mon, 23 Oct 2023 11:11:49 +0200 Subject: [PATCH] fix error --- nlmod/read/geotop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nlmod/read/geotop.py b/nlmod/read/geotop.py index 89ad01cf..7aaf5c37 100644 --- a/nlmod/read/geotop.py +++ b/nlmod/read/geotop.py @@ -36,7 +36,7 @@ def get_lithok_colors(): 8: (216, 163, 32), 9: (95, 95, 255), } - colors = {key: (x / 255 for x in color) for key, color in colors.items()} + colors = {key: (x / 255 for x in color,) for key, color in colors.items()} return colors