fix typo in comment

This commit is contained in:
Jan Petykiewicz 2019-08-04 03:08:56 -07:00
parent c3dfbda6f7
commit 159527e1e2

View File

@ -20,7 +20,7 @@ def _run(command: str or List[str], **kwargs):
"""
Wrapper for subprocess.run():
- Accepts args as either a list of strings or space-delimited string
- Captures and returns stdouti
- Captures and returns stdout
"""
if isinstance(command, str):
args = command.split()