Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: jtigue-bdai <[email protected]>
Signed-off-by: James Smith <[email protected]>
  • Loading branch information
jsmith-bdai and jtigue-bdai committed Aug 26, 2024
1 parent 35b5c14 commit 0a175a6
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@


def generate_articulation_cfg(
articulation_type, stiffness: float | None = 10.0, damping: float | None = 2.0
articulation_type: Literal["humanoid", "panda", "anymal", "shandow_hand", "single_joint"],
stiffness: float | None = 10.0,
damping: float | None = 2.0
) -> ArticulationCfg:
"""Generate an articulation configuration.
Args:
articulation_type: Type of articulation to generate. Options are "humanoid", "panda", "anymal", "shadow_hand" and "single_joint".
articulation_type: Type of articulation to generate.
stiffness: Stiffness value for the articulation's actuators. Only currently used for humanoid.
damping: Damping value for the articulation's actuators. Only currently used for humanoid.
Expand Down

0 comments on commit 0a175a6

Please sign in to comment.