This commit is contained in:
Will McGugan 2024-07-14 19:44:07 +01:00
parent 64d585178d
commit e9fa99ffeb

View file

@ -615,7 +615,7 @@ class Gradient:
@property
def rich_colors(self) -> list[RichColor]:
"""I list of colors in the gradient (for the Rich library)."""
"""A list of colors in the gradient (for the Rich library)."""
if self._rich_colors is None:
self._rich_colors = [color.rich_color for color in self.colors]
return self._rich_colors