(self, env_vars: EnvVariables)
| 14 | class ProcessInvoker: |
| 15 | |
| 16 | def __init__(self, env_vars: EnvVariables): |
| 17 | super().__init__() |
| 18 | self._env_vars = env_vars |
| 19 | |
| 20 | def invoke(self, command, work_dir='.', *, environment_variables: dict = None, check_stderr=True, shell=False): |
| 21 | if isinstance(command, str) and not shell: |