From b678b9e06d6c7e7663e69b333bb0d1bdd825195d Mon Sep 17 00:00:00 2001 From: David Todd Date: Sun, 26 Jan 2020 18:20:07 -0600 Subject: [PATCH] fix issue in logic --- pixo/pixels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixo/pixels.py b/pixo/pixels.py index 1462aaa..8514728 100644 --- a/pixo/pixels.py +++ b/pixo/pixels.py @@ -95,7 +95,7 @@ class Pixo: To blink multiple times, call this in a loop """ - if len(force) > 0: + if len(force) == 0: self.fill_image(image) else: self.fill_image(image, False).force_color(force)