(self)
| 38 | error: str = "" |
| 39 | timestamp: str = field(default_factory=lambda: datetime.now(timezone.utc).isoformat()) |
| 40 | attack_tags: list[dict] = field(default_factory=list) |
| 41 | |
| 42 | @property |
| 43 | def confirmed(self) -> bool: |
| 44 | return self.status == "CONFIRMED" |
nothing calls this directly
no outgoing calls
no test coverage detected