Skip to content

Commit 8da5d7b

Browse files
committed
Applied style checker.
1 parent 79d7767 commit 8da5d7b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cpp/pybind/pipelines/registration/feature.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ void pybind_feature_declarations(py::module &m_registration) {
1919
py::class_<Feature, std::shared_ptr<Feature>> feature(
2020
m_registration, "Feature",
2121
"Class to store featrues for registration.");
22-
m_registration.attr("m") = py::module_::import("typing").attr("TypeVar")("m");
23-
m_registration.attr("n") = py::module_::import("typing").attr("TypeVar")("n");
22+
m_registration.attr("m") =
23+
py::module_::import("typing").attr("TypeVar")("m");
24+
m_registration.attr("n") =
25+
py::module_::import("typing").attr("TypeVar")("n");
2426
}
2527
void pybind_feature_definitions(py::module &m_registration) {
2628
// open3d.registration.Feature

0 commit comments

Comments
 (0)