Returns commands that will run the specified command as a Python script.
(command: str)
| 2 | |
| 3 | |
| 4 | def python(command: str) -> List[str]: |
| 5 | """ |
| 6 | Returns commands that will run the specified command as a Python script. |
| 7 | """ |
| 8 | return ["python3", "-c", command] |
| 9 | |
| 10 | |
| 11 | def bash(command: str) -> List[str]: |
no outgoing calls