Skip to content

Commit

Permalink
Align declaration order
Browse files Browse the repository at this point in the history
  • Loading branch information
jstone-lucasfilm authored Oct 15, 2024
1 parent 3526b1a commit 5d455eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/PyMaterialX/PyMaterialXCore/PyDocument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ void bindPyDocument(py::module& mod)
py::class_<mx::Document, mx::DocumentPtr, mx::GraphElement>(mod, "Document")
.def("initialize", &mx::Document::initialize)
.def("copy", &mx::Document::copy)
.def("importLibrary", &mx::Document::importLibrary)
.def("setDataLibrary", &mx::Document::setDataLibrary)
.def("getDataLibrary", &mx::Document::getDataLibrary)
.def("hasDataLibrary", &mx::Document::hasDataLibrary)
.def("importLibrary", &mx::Document::importLibrary)
.def("getReferencedSourceUris", &mx::Document::getReferencedSourceUris)
.def("addNodeGraph", &mx::Document::addNodeGraph,
py::arg("name") = mx::EMPTY_STRING)
Expand Down

0 comments on commit 5d455eb

Please sign in to comment.