argument after * must be an iterable

A comma exception that is thrown, args parameter is iterable objects
Error writing

threading.Thread(target=motion_monitor, args=(motion))

Correct wording

threading.Thread(target=motion_monitor, args=(motion,))

Published 18 original articles · won praise 1 · views 961

Guess you like

Origin blog.csdn.net/ManWZD/article/details/102680353