(cls, data: Any)
| 92 | |
| 93 | @classmethod |
| 94 | def from_dict(cls, data: Any) -> "PlayCoverConfig | None": |
| 95 | if not isinstance(data, dict): |
| 96 | return None |
| 97 | return cls(uuid=_as_string(data.get("uuid"))) |
| 98 | |
| 99 | |
| 100 | @dataclass(frozen=True) |
nothing calls this directly
no test coverage detected