AttributeError: 'module' object has no attribute 'grasping_test'
时间: 2023-10-24 14:06:14 浏览: 81
mdk_armcc_user_guide.pdf
This error usually occurs when you try to access an attribute or method that does not exist in the module you are importing. In this case, it seems that you are trying to access a method called "grasping_test" from a module, but that method does not exist in that module.
To fix this error, you need to check the module and make sure that the "grasping_test" method exists in it. If it does not exist, you can either create the method yourself or use a different method that does exist in the module.
阅读全文