Exception to raise when user tries to add the home-assistant/core repository.
| 38 | |
| 39 | |
| 40 | class HomeAssistantCoreRepositoryException(HacsException): |
| 41 | """Exception to raise when user tries to add the home-assistant/core repository.""" |
| 42 | |
| 43 | exception_message = ( |
| 44 | "You can not add homeassistant/core, to use core integrations " |
| 45 | "check the Home Assistant documentation for how to add them." |
| 46 | ) |
| 47 | |
| 48 | def __init__(self) -> None: |
| 49 | super().__init__(self.exception_message) |
no outgoing calls
no test coverage detected
searching dependent graphs…