From eaa1e459f64042c51a9fe2d19afb13eb7922cc2d Mon Sep 17 00:00:00 2001 From: Sergio <37589160+gio8tisu@users.noreply.github.com> Date: Wed, 4 Sep 2024 18:38:01 +0200 Subject: [PATCH] Move iterable doctring from Flavor to FlavorColors (#73) --- catppuccin/models.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/catppuccin/models.py b/catppuccin/models.py index 9fc71a8..3d21115 100644 --- a/catppuccin/models.py +++ b/catppuccin/models.py @@ -37,7 +37,10 @@ class Color: @dataclass(frozen=True) class FlavorColors: - """All of the colors for a particular flavor of Catppuccin.""" + """All of the colors for a particular flavor of Catppuccin. + + Can be iterated over, in which case the colors are yielded in order. + """ rosewater: Color flamingo: Color @@ -103,7 +106,6 @@ class Flavor: """A flavor is a collection of colors. Catppuccin has four flavors; Latte, Frappé, Macchiato, and Mocha. - Can be iterated over, in which case the colors are yielded in order. """ name: str