Skip to content
This repository was archived by the owner on Sep 30, 2025. It is now read-only.

Commit 295f7a4

Browse files
committed
fix: fixed StrikeRunSummaryResponse validation errors when runs are requested (ENG-670)
1 parent 28fcec0 commit 295f7a4

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

dreadnode_cli/agent/format.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ def format_zones_verbose(zones: list[api.Client.StrikeRunZone], *, include_logs:
192192
if isinstance(zone_score, float):
193193
zone_score = round(zone_score, 2)
194194

195-
table.add_row("id", f"[dim]{zone.id}[/]")
196195
table.add_row("score", f"[yellow]{zone_score}[/]" if zone_score else "[dim]0[/]")
197196
table.add_row("outputs", f"[magenta]{len(zone.outputs)}[/]" if zone.outputs else "[dim]0[/]")
198197
table.add_row("inferences", f"[blue]{len(zone.inferences)}[/]" if zone.inferences else "[dim]0[/]")

dreadnode_cli/api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ class StrikeRunOutput(StrikeRunOutputSummary):
337337
data: dict[str, t.Any]
338338

339339
class _StrikeRunZone(BaseModel):
340-
id: UUID
341340
key: str
342341
status: "Client.StrikeRunZoneStatus"
343342
start: datetime | None

0 commit comments

Comments
 (0)