Skip to content
Snippets Groups Projects
Commit 4dba3f86 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

update python format

parent a91cad4b
No related branches found
No related tags found
No related merge requests found
Pipeline #17569 passed with warnings
......@@ -187,6 +187,7 @@ class TalosArmLoader(TalosLoader):
class TalosLegsLoader(TalosLoader):
def __init__(self):
super(TalosLegsLoader, self).__init__()
legMaxId = 14
......@@ -302,6 +303,7 @@ class Solo8Loader(RobotLoader):
class SoloLoader(Solo8Loader):
def __init__(self, *args, **kwargs):
warnings.warn('"solo" is deprecated, please try to load "solo8"')
return super(SoloLoader, self).__init__(*args, **kwargs)
......
......@@ -11,6 +11,7 @@ from example_robot_data import load_full
class RobotTestCase(unittest.TestCase):
def check(self, name, expected_nq, expected_nv, one_kg_bodies=[]):
"""Helper function for the real tests"""
robot, _, urdf, _ = load_full(name, display=False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment