Pin additons
This commit is contained in:
@@ -900,6 +900,14 @@ def _metadata_comments(ins: JsonObject) -> list[str]:
|
||||
if isinstance(inference, dict) and inference.get("comment"):
|
||||
comments.append(str(inference["comment"]))
|
||||
|
||||
for event in ins.get("sci_protocol", []):
|
||||
if isinstance(event, dict) and event.get("comment"):
|
||||
comments.append(str(event["comment"]))
|
||||
|
||||
board_profile = ins.get("board_profile")
|
||||
if isinstance(board_profile, dict) and board_profile.get("comment"):
|
||||
comments.append(str(board_profile["comment"]))
|
||||
|
||||
indirect = ins.get("indirect_flow")
|
||||
if isinstance(indirect, dict) and indirect.get("summary"):
|
||||
comments.append(str(indirect["summary"]))
|
||||
|
||||
Reference in New Issue
Block a user