Skip to content

Commit fe4b3c5

Browse files
Updating base type comments (#732)
* Correction None to "NullMount" in mount_types * Updating None to NullMount in base types comment
1 parent 77a4751 commit fe4b3c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

robosuite/environments/manipulation/manipulation_env.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ class ManipulationEnv(RobotEnv):
2525
dict if same controller is to be used for all robots or else it should be a list of the same length as
2626
"robots" param
2727
28-
base_types (None or str or list of str): type of base, used to instantiate base models from base factory.
28+
base_types (str or list of str): type of base, used to instantiate base models from base factory.
2929
Default is "default", which is the default base associated with the robot(s) the 'robots' specification.
30-
None results in no base, and any other (valid) model overrides the default base. Should either be
30+
"NullMount" results in no base, and any other (valid) model overrides the default base. Should either be
3131
single str if same base type is to be used for all robots or else it should be a list of the same
3232
length as "robots" param
3333

robosuite/environments/robot_env.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ class RobotEnv(MujocoEnv):
2525
dict if same controller is to be used for all robots or else it should be a list of the same length as
2626
"robots" param
2727
28-
mount_types (None or str or list of str): type of mount, used to instantiate mount models from mount factory.
28+
mount_types (str or list of str): type of mount, used to instantiate mount models from mount factory.
2929
Default is "default", which is the default mount associated with the robot(s) the 'robots' specification.
30-
None results in no mount, and any other (valid) model overrides the default mount. Should either be
30+
"NullMount" results in no mount, and any other (valid) model overrides the default mount. Should either be
3131
single str if same mount type is to be used for all robots or else it should be a list of the same
3232
length as "robots" param
3333

0 commit comments

Comments
 (0)