From f014c52c7b7cf737c1579a145eafdefc4705f8f8 Mon Sep 17 00:00:00 2001 From: Constantin Gierczak--Galle Date: Fri, 15 Dec 2023 11:02:30 +0100 Subject: [PATCH] Fix recursion --- pyjecteur/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyjecteur/common.py b/pyjecteur/common.py index 45139c8..8c93849 100644 --- a/pyjecteur/common.py +++ b/pyjecteur/common.py @@ -116,5 +116,5 @@ def blendLedBar(colors: List[Color], blending: Optional[InterpType] = InterpType.NEAREST, filling: Optional[Filling] = Filling.GREATEST, void_color: Optional[Color] = Color("black")) -> List[Color]: - return widen(blendLedBar(colors, length, blending, filling, void_color), + return widen(blendLedBar_simple(colors, length, blending, filling, void_color), width)