Skip to content

Commit 1ecae03

Browse files
committed
Fixed code style
1 parent 814e574 commit 1ecae03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_methods_and_attributes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ TEST_SUBMODULE(methods_and_attributes, m) {
287287
.def_readonly_static("def_readonly_static", &TestProperties::static_value)
288288
.def_readwrite_static("def_readwrite_static", &TestProperties::static_value)
289289
.def_property_static("def_writeonly_static", py::cpp_function(),
290-
[](py::object, int v){ TestProperties::static_value = v; })
290+
[](py::object, int v) { TestProperties::static_value = v; })
291291
.def_property_readonly_static("def_property_readonly_static",
292292
[](py::object) { return TestProperties::static_get(); })
293293
.def_property_static("def_property_writeonly_static", py::cpp_function(),

0 commit comments

Comments
 (0)