Forward-compat: a frame whose shape we do not model yet.
| 96 | |
| 97 | @dataclass |
| 98 | class UnknownFrame: |
| 99 | """Forward-compat: a frame whose shape we do not model yet.""" |
| 100 | |
| 101 | type: str |
| 102 | raw: dict[str, Any] = field(default_factory=dict) |
| 103 | |
| 104 | |
| 105 | AskFrame = ( |
no outgoing calls
no test coverage detected