Forward-compat: a frame whose shape we do not model yet.
| 96 | arm = item.WhichOneof("payload") |
| 97 | if arm == "ask_event": |
| 98 | payload: Any = item.ask_event.payload_json |
| 99 | try: |
| 100 | payload = json.loads(payload) |
| 101 | except (TypeError, ValueError): |
| 102 | pass |
| 103 | yield EventFrame( |
| 104 | "event", |
| 105 | int(item.ask_event.event_type), |
no outgoing calls
no test coverage detected