Wrapper around FT.PROFILE response
| 2 | |
| 3 | |
| 4 | class ProfileInformation: |
| 5 | """ |
| 6 | Wrapper around FT.PROFILE response |
| 7 | """ |
| 8 | |
| 9 | def __init__(self, info: Any) -> None: |
| 10 | self._info: Any = info |
| 11 | |
| 12 | @property |
| 13 | def info(self) -> Any: |
| 14 | return self._info |
no outgoing calls
no test coverage detected