Skip to content

Commit c27f62d

Browse files
style: pre-commit fixes
1 parent fd68d4c commit c27f62d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/test_template_alias_base.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ struct S : public Base<Allocator> {};
1717
S<> make_S() { return S<>{}; }
1818

1919
TEST_SUBMODULE(template_alias_base, m) {
20-
py::class_<Base<std::allocator>>(m, "B_std")
21-
.def(py::init());
22-
py::class_<S<std::allocator>, Base<std::allocator>>(m, "S_std")
23-
.def(py::init());
20+
py::class_<Base<std::allocator>>(m, "B_std").def(py::init());
21+
py::class_<S<std::allocator>, Base<std::allocator>>(m, "S_std").def(py::init());
2422

2523
m.def("make_S", &make_S);
2624
}

0 commit comments

Comments
 (0)