From 19f973a44ab04fbef4295a12f4fde71ac4bd39fd Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sat, 15 Oct 2022 16:40:10 +0200 Subject: Fix stop command (#1841) --- lib/threads/color.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/threads/color.py') diff --git a/lib/threads/color.py b/lib/threads/color.py index 4a2f58e6..85c8948c 100644 --- a/lib/threads/color.py +++ b/lib/threads/color.py @@ -66,7 +66,7 @@ class ThreadColor(object): return hash(self.rgb) def __ne__(self, other): - return not(self == other) + return not (self == other) def __repr__(self): return "ThreadColor" + repr(self.rgb) -- cgit v1.2.3