I\'m trying to pass a string argument to a target function in a process. Somehow, the string is interpreted as a list of as many arguments as there are characters.
This
Change args=('hello') to args=('hello',) or even better args=['hello']. Otherwise parentheses don't form a sequence.
args=('hello')
args=('hello',)
args=['hello']