Skip to content

Commit 58a8cef

Browse files
committed
Eat **kwargs in OMPLSimplifier.
1 parent ecceaf4 commit 58a8cef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prpy/planning/ompl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def __str__(self):
193193
return 'OMPL Simplifier'
194194

195195
@PlanningMethod
196-
def ShortcutPath(self, robot, path, timeout=1.):
196+
def ShortcutPath(self, robot, path, timeout=1., **kwargs):
197197
# The planner operates in-place, so we need to copy the input path. We
198198
# also need to copy the trajectory into the planning environment.
199199
output_path = CopyTrajectory(path, env=self.env)

0 commit comments

Comments
 (0)