From 5f2117badceb73fe575b13764a86d56e5dbca60c Mon Sep 17 00:00:00 2001 From: pushfoo <36696816+pushfoo@users.noreply.github.com> Date: Tue, 11 Apr 2023 15:30:51 -0400 Subject: [PATCH] Fix typo in color exception string --- arcade/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arcade/types.py b/arcade/types.py index 261e968af..b238cacc9 100644 --- a/arcade/types.py +++ b/arcade/types.py @@ -142,7 +142,7 @@ def from_iterable(cls, iterable: Iterable[int]) -> "Color": if _a: if len(_a) > 1: - raise ValueError("iterable must unpack to 3 or 3 values") + raise ValueError("iterable must unpack to 3 or 4 values") a = _a[0] else: a = 255