Fix CampAtmo.stop(self) signature

This commit is contained in:
Jakob 2019-08-20 17:05:14 +02:00
parent df72c78525
commit eea986304e
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class CampAtmo:
)
self.lines_thread.start()
def stop():
def stop(self):
self.stopped = True
self.lines_thread.join(2)
self.background_thread.join(0.5)