Skip to content

Commit

Permalink
style: pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Oct 20, 2022
1 parent 13afc03 commit 90a0e08
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_pytypes.cpp
Expand Up @@ -805,9 +805,9 @@ TEST_SUBMODULE(pytypes, m) {
return a;
});

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

0 comments on commit 90a0e08

Please sign in to comment.