Skip to content

Commit 5a485ae

Browse files
author
Rachel Holladay
committed
added kwargs to ExecuteTrajectory and PostProcessPath
1 parent b2d2ca2 commit 5a485ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/prpy/base/robot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def GetTrajectoryManipulators(self, traj):
184184
def PostProcessPath(self, path, defer=False, executor=None,
185185
constrained=None, smooth=None, default_timelimit=0.5,
186186
shortcut_options=None, smoothing_options=None,
187-
retiming_options=None):
187+
retiming_options=None, **kwargs):
188188
""" Post-process a geometric path to prepare it for execution.
189189
190190
This method post-processes a geometric path by (optionally) optimizing
@@ -344,7 +344,7 @@ def do_execute():
344344
else:
345345
return do_execute()
346346

347-
def ExecuteTrajectory(self, traj, defer=False, timeout=None, period=0.01):
347+
def ExecuteTrajectory(self, traj, defer=False, timeout=None, period=0.01, **kwargs):
348348
""" Executes a time trajectory on the robot.
349349
350350
This function directly executes a timed OpenRAVE trajectory on the

0 commit comments

Comments
 (0)