Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def _replace_uuids(node: str | list | dict) -> str | list | dict:
)

# exclude annotations UI info for conversations done in the source project
annotations = project_copy.get("ui", {}).get("annotations", {}).copy()
annotations = deepcopy(project_copy.get("ui", {}).get("annotations", {})) or {}
for ann_id, ann in annotations.items():
if ann["type"] == "conversation":
project_copy["ui"]["annotations"].pop(ann_id)
Expand Down
Loading