Skip to content

Commit

Permalink
Applied style checker.
Browse files Browse the repository at this point in the history
  • Loading branch information
timohl committed Nov 26, 2024
1 parent 79d7767 commit 8da5d7b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cpp/pybind/pipelines/registration/feature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ void pybind_feature_declarations(py::module &m_registration) {
py::class_<Feature, std::shared_ptr<Feature>> feature(
m_registration, "Feature",
"Class to store featrues for registration.");
m_registration.attr("m") = py::module_::import("typing").attr("TypeVar")("m");
m_registration.attr("n") = py::module_::import("typing").attr("TypeVar")("n");
m_registration.attr("m") =
py::module_::import("typing").attr("TypeVar")("m");
m_registration.attr("n") =
py::module_::import("typing").attr("TypeVar")("n");
}
void pybind_feature_definitions(py::module &m_registration) {
// open3d.registration.Feature
Expand Down

0 comments on commit 8da5d7b

Please sign in to comment.