| 20 | |
| 21 | |
| 22 | class WorkflowState(TypedDict): |
| 23 | message: Annotated[Sequence[Any], operator.add] |
| 24 | sender: str |
| 25 | vulns: list[dict[str, Any]] |
| 26 | check_count: int |
| 27 | |
| 28 | |
| 29 | @dataclass(slots=True) |
nothing calls this directly
no outgoing calls
no test coverage detected