Skip to content

Commit

Permalink
AnalyticalPyBulletClient constructor super is not correct
Browse files Browse the repository at this point in the history
  • Loading branch information
yck011522 committed Jun 14, 2024
1 parent b6a493a commit 13e5337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compas_fab/backends/pybullet/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ class AnalyticalPyBulletClient(PyBulletClient):
"""Combination of PyBullet as the client for Collision Detection and Analytical Inverse Kinematics."""

def __init__(self, connection_type="gui", verbose=False):
super(AnalyticalPyBulletClient, self).__init__(self, connection_type=connection_type, verbose=verbose)
super(AnalyticalPyBulletClient, self).__init__(connection_type=connection_type, verbose=verbose)

def inverse_kinematics(self, robot, frame_WCF, start_configuration=None, group=None, options=None):
planner = AnalyticalInverseKinematics(self)
Expand Down

0 comments on commit 13e5337

Please sign in to comment.