Skip to content

Commit 59a2076

Browse files
style: pre-commit fixes
1 parent 2dc070f commit 59a2076

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/pybind11/pybind11.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1463,8 +1463,8 @@ class module_ : public object {
14631463
#ifdef Py_mod_multiple_interpreters
14641464
slots[i].slot = Py_mod_multiple_interpreters;
14651465
slots[i].value = detail::multi_interp_option(options...);
1466-
if (detail::gil_not_used_option(options...) &&
1467-
slots[i].value == Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED) {
1466+
if (detail::gil_not_used_option(options...)
1467+
&& slots[i].value == Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED) {
14681468
// if you support free threading and multi-interpreters,
14691469
// then you definitely also support per-interpreter GIL
14701470
// even if you don't know it.

0 commit comments

Comments
 (0)