(command)
| 32 | |
| 33 | |
| 34 | def run_command_line_tool(command): |
| 35 | result = subprocess.run(command, capture_output=True, text=True) |
| 36 | print(result.stdout) |
| 37 | if result.stderr: |
| 38 | print(f"Error: {result.stderr}") |
| 39 | |
| 40 | |
| 41 | if __name__ == "__main__": |
no outgoing calls
no test coverage detected
searching dependent graphs…