(self, *, data: Dict[str, Any])
| 76 | ) |
| 77 | |
| 78 | def __init__(self, *, data: Dict[str, Any]): |
| 79 | self._platform = data.get("platform") |
| 80 | self._last_updated = data.get("last_updated") |
| 81 | |
| 82 | @property |
| 83 | def platform(self) -> Optional[int]: |
nothing calls this directly
no outgoing calls
no test coverage detected