Fix recursion
This commit is contained in:
parent
71ce2661a5
commit
f014c52c7b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue