Skip to content

Commit 82847c1

Browse files
(fix) add default arg (#69)
1 parent 9df8226 commit 82847c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/bindings/src/scene_graph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void init_scene_graph(py::module_& m) {
7171
.def(py::init<const DynamicSceneGraph::LayerKeys&, const DynamicSceneGraph::LayerNames&>(),
7272
"layer_keys"_a,
7373
"layer_names"_a = DynamicSceneGraph::LayerNames{})
74-
.def("clear", &DynamicSceneGraph::clear)
74+
.def("clear", &DynamicSceneGraph::clear, "include_mesh"_a = true)
7575
.def("reset", &DynamicSceneGraph::reset)
7676
.def(
7777
"has_layer",

0 commit comments

Comments
 (0)