Fixed wrong argument count
This commit is contained in:
parent
f2a77fae2b
commit
9799e1405b
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class PeopleCounter ():
|
|||
countChange: int = self.getCountChange(self.directionState)
|
||||
|
||||
# Hooks
|
||||
th = threading.Thread(target=self.handleCallbacks, args=(self,countChange))
|
||||
th = threading.Thread(target=self.handleCallbacks, args=(countChange,))
|
||||
th.start()
|
||||
|
||||
# Reset records
|
||||
|
|
Loading…
Reference in a new issue