(self, host="localhost", port=42943)
| 19 | """Handles communication with the puppet API.""" |
| 20 | |
| 21 | def __init__(self, host="localhost", port=42943): |
| 22 | self.base_url = f"http://{host}:{port}" |
| 23 | self._connected = False |
| 24 | |
| 25 | def is_connected(self): |
| 26 | """Check if the puppet API is reachable.""" |
nothing calls this directly
no outgoing calls
no test coverage detected