Skip to content

Commit cb01900

Browse files
tbitcsoz-agent
andcommitted
fix: restore missing closing paren in trace.py SealRecord.from_dict()
Previous edit accidentally removed the closing ) from cls(...) call in from_dict classmethod, causing a SyntaxError. Added back. Co-Authored-By: Oz <oz-agent@warp.dev>
1 parent c1f7557 commit cb01900

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/specsmith/trace.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ def from_dict(cls, d: dict[str, object]) -> SealRecord:
111111
timestamp=str(d["timestamp"]),
112112
author=str(d.get("author", "specsmith")),
113113
artifact_ids=_parse_ids(d.get("artifact_ids")),
114+
)
114115

115116

116117
def _parse_ids(raw: object) -> list[str]:

0 commit comments

Comments
 (0)