Skip to content

Commit 7d767b1

Browse files
Linting fixes
1 parent 4352249 commit 7d767b1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

robot_descriptions/loaders/pybullet.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,17 @@
2626

2727

2828
def load_robot_description(
29-
description_name: str, commit=None, **kwargs
29+
description_name: str,
30+
commit: Optional[str] = None,
31+
**kwargs,
3032
) -> int:
3133
"""
3234
Load a robot description in PyBullet.
3335
3436
Args:
3537
description_name: Name of the robot description.
36-
commit: If specified, check out that commit from the cloned robot description repository.
38+
commit: If specified, check out that commit from the cloned robot
39+
description repository.
3740
kwargs: arguments passed to pybullet.loadURDF function, including:
3841
basePosition: 3D position of the base of the robot in world coordinates.
3942
baseOrientation: orientation in quaternion (xyzw) of the base of the robot in world coordinates.

0 commit comments

Comments
 (0)