We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b6247 commit ac37779Copy full SHA for ac37779
src/vacuum_map_parser_base/config/color.py
@@ -117,8 +117,8 @@ def __init__(
117
self._overriden_room_colors = {}
118
else:
119
self._overriden_room_colors = room_colors
120
- self._cached_colors = {}
121
- self._cached_room_colors = {}
+ self._cached_colors: dict[SupportedColor, Color] = {}
+ self._cached_room_colors: dict[int, Color] = {}
122
123
def get_color(self, color_name: SupportedColor) -> Color:
124
if color_name not in self._cached_colors:
0 commit comments