Skip to content

Commit f26c39d

Browse files
style: pre-commit fixes
1 parent c8c6591 commit f26c39d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

include/pybind11/pybind11.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,9 @@ class cpp_function : public function {
125125
typename = detail::enable_if_t<detail::is_lambda<Func>::value>>
126126
// NOLINTNEXTLINE(google-explicit-constructor)
127127
cpp_function(Func &&f, Extra &&...extra) {
128-
initialize(
129-
std::forward<Func>(f), (detail::function_signature_t<Func> *) nullptr, std::forward<Extra>(extra)...);
128+
initialize(std::forward<Func>(f),
129+
(detail::function_signature_t<Func> *) nullptr,
130+
std::forward<Extra>(extra)...);
130131
}
131132

132133
/// Construct a cpp_function from a class method (non-const, no ref-qualifier)

0 commit comments

Comments
 (0)