Skip to content

Commit 9a4bcde

Browse files
committed
Adds self.detector to prpy.base.robot.
This mirrors `self.actions` and `self.planner`. However, if this attribute is removed, f1fb21b will still prevent an infinite recursion.
1 parent f1fb21b commit 9a4bcde

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/prpy/base/robot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class Robot(openravepy.Robot):
4545
def __init__(self, robot_name=None):
4646
self.actions = None
4747
self.planner = None
48+
self.detector = None
4849
self.robot_name = robot_name
4950

5051
try:

0 commit comments

Comments
 (0)