(self, *, detail=None, hint=None)
| 192 | |
| 193 | class InterfaceMessage: |
| 194 | def __init__(self, *, detail=None, hint=None): |
| 195 | self.detail = detail |
| 196 | self.hint = hint |
| 197 | |
| 198 | def __str__(self): |
| 199 | msg = self.args[0] |
nothing calls this directly
no outgoing calls
no test coverage detected