From 1c3cd8be62202a7b3886296e8a5b421e98232f6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=9E=EC=98=88=EB=A6=AC?= Date: Sat, 8 Oct 2022 23:16:50 +0900 Subject: [PATCH] Update convert2bvh.py --- scripts/postprocess/convert2bvh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/postprocess/convert2bvh.py b/scripts/postprocess/convert2bvh.py index 70aae06..6a3e30f 100644 --- a/scripts/postprocess/convert2bvh.py +++ b/scripts/postprocess/convert2bvh.py @@ -152,7 +152,7 @@ def read_smpl(outname): assert os.path.exists(outname), outname datas = read_json(outname) outputs = [] - if isinstace(datas, dict): + if isinstance(datas, dict): datas = datas['annots'] for data in datas: for key in ['Rh', 'Th', 'poses', 'shapes']: