Revert "Merge branch 'dev' into prcix9320"

This reverts commit ae75f07c8e.
This commit is contained in:
zhangshixiang
2026-01-13 18:33:32 +08:00
parent ae75f07c8e
commit 1340bae838
7 changed files with 75 additions and 170 deletions

View File

@@ -159,14 +159,10 @@ _msg_converter: Dict[Type, Any] = {
else Pose()
),
config=json.dumps(x.get("config", {})),
data=json.dumps(obtain_data_with_uuid(x)),
data=json.dumps(x.get("data", {})),
),
}
def obtain_data_with_uuid(x: dict):
data = x.get("data", {})
data["unilabos_uuid"] = x.get("uuid", None)
return data
def json_or_yaml_loads(data: str) -> Any:
try: