InputArgs
InputArgs copied to clipboard
Fix async kwargs
This proposed fix addresses issue #10
self.sl is a dictionary that is given as argument to AsyncProcess,
but it ends up mapped to path argument, instead of I guess being
used as a keyword argument.
AsyncProcess(..., path="", shell=False) ends up called as path={shell:True} on my environment, hence the reported error message.
I might not be the proper fix.