check bools explicitly

This commit is contained in:
k4yt3x
2022-04-02 05:29:54 +00:00
parent bcb2e97f89
commit ebbe4570d5
4 changed files with 5 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ class Interpolator(multiprocessing.Process):
f"Interpolator process <blue>{self.name}</blue> initiating"
)
processor_objects = {}
while self.running:
while self.running is True:
try:
# pause if pause flag is set
if self.pause.value is True: