summaryrefslogtreecommitdiff
path: root/lib/threads
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2022-10-15 16:40:10 +0200
committerGitHub <noreply@github.com>2022-10-15 16:40:10 +0200
commit19f973a44ab04fbef4295a12f4fde71ac4bd39fd (patch)
treeef58ac3f9fd045878d90c26c67d5f0391127c6a2 /lib/threads
parent10a800531a478cf5524314bca336e00d274c4140 (diff)
Fix stop command (#1841)
Diffstat (limited to 'lib/threads')
-rw-r--r--lib/threads/color.py2
1 files changed, 1 insertions, 1 deletions
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)