Skip to content

Commit 90a0e08

Browse files
style: pre-commit fixes
1 parent 13afc03 commit 90a0e08

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test_pytypes.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -805,9 +805,9 @@ TEST_SUBMODULE(pytypes, m) {
805805
return a;
806806
});
807807

808-
m.def("annotate_tuple_float_str", [](const py::Tuple<py::float_, py::str>&) {});
809-
m.def("annotate_dict_str_int", [](const py::Dict<py::str, int>&) {});
810-
m.def("annotate_list_int", [](const py::List<int>&) {});
811-
m.def("annotate_set_str", [](const py::Set<std::string>&) {});
812-
m.def("annotate_fn", [](const py::Callable<int(py::List<py::str>, py::str)>&) {});
808+
m.def("annotate_tuple_float_str", [](const py::Tuple<py::float_, py::str> &) {});
809+
m.def("annotate_dict_str_int", [](const py::Dict<py::str, int> &) {});
810+
m.def("annotate_list_int", [](const py::List<int> &) {});
811+
m.def("annotate_set_str", [](const py::Set<std::string> &) {});
812+
m.def("annotate_fn", [](const py::Callable<int(py::List<py::str>, py::str)> &) {});
813813
}

0 commit comments

Comments
 (0)