Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions embodichain/lab/sim/atomic_actions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,18 @@

from .core import (
Affordance,
GraspPose,
InteractionPoints,
ObjectSemantics,
ActionCfg,
Comment on lines 24 to 28
Copy link

Copilot AI Apr 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GraspPose is no longer imported from .core, but __all__ still includes "GraspPose" and downstream code/tests import it from embodichain.lab.sim.atomic_actions. Either restore GraspPose (if still supported) or remove it from __all__ and update imports to the new affordance type.

Copilot uses AI. Check for mistakes.
AtomicAction,
)
from .actions import (
ReachAction,
GraspAction,
ReleaseAction,
MoveAction,
PickUpAction,
PlaceAction,
MoveActionCfg,
PickUpActionCfg,
PlaceActionCfg,
)
from .engine import (
AtomicActionEngine,
Expand All @@ -51,10 +52,12 @@
"ActionCfg",
"AtomicAction",
# Action implementations
"ReachAction",
"GraspAction",
"ReleaseAction",
"MoveAction",
"PickUpAction",
"PlaceAction",
"MoveActionCfg",
"PickUpActionCfg",
"PlaceActionCfg",
# Engine
"AtomicActionEngine",
"register_action",
Expand Down
Loading