Skip to content

Commit 3ff0ce8

Browse files
committed
Code cleanup
1 parent d94375e commit 3ff0ce8

File tree

2 files changed

+1
-20
lines changed
  • source

2 files changed

+1
-20
lines changed

source/isaaclab/isaaclab/devices/device_base.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -141,18 +141,6 @@ class TrackingTarget(Enum):
141141
CONTROLLER_LEFT = 3
142142
CONTROLLER_RIGHT = 4
143143

144-
class PoseLayout:
145-
"""Standard pose layout indices and size: [x, y, z, qw, qx, qy, qz]."""
146-
147-
X = 0
148-
Y = 1
149-
Z = 2
150-
QW = 3
151-
QX = 4
152-
QY = 5
153-
QZ = 6
154-
LEN = 7
155-
156144
class MotionControllerDataRowIndex(Enum):
157145
"""Rows in the motion-controller 2x7 array."""
158146

@@ -169,9 +157,3 @@ class MotionControllerInputIndex(Enum):
169157
BUTTON_0 = 4
170158
BUTTON_1 = 5
171159
PADDING = 6
172-
173-
class MotionControllerLayout:
174-
"""Sizes for motion-controller layout."""
175-
176-
ROWS = 2
177-
INPUTS_LEN = 7

source/isaaclab_tasks/isaaclab_tasks/manager_based/locomanipulation/pick_place/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@
1010
import os
1111

1212
from . import agents, fixed_base_upper_body_ik_g1_env_cfg, locomanipulation_g1_env_cfg
13-
from .locomanipulation_g1_env import LocomanipulationG1ManagerBasedRLEnv
1413

1514
gym.register(
1615
id="Isaac-PickPlace-Locomanipulation-G1-Abs-v0",
17-
entry_point=LocomanipulationG1ManagerBasedRLEnv,
16+
entry_point="isaaclab.envs:ManagerBasedRLEnv",
1817
kwargs={
1918
"env_cfg_entry_point": locomanipulation_g1_env_cfg.LocomanipulationG1EnvCfg,
2019
"robomimic_bc_cfg_entry_point": os.path.join(agents.__path__[0], "robomimic/bc_rnn_low_dim.json"),

0 commit comments

Comments
 (0)