Fix recursion

This commit is contained in:
Constantin Gierczak--Galle 2023-12-15 11:02:30 +01:00
parent 71ce2661a5
commit f014c52c7b

View file

@ -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)