style: pre-commit fixes
diff --git a/include/pybind11/detail/internals.h b/include/pybind11/detail/internals.h
index 93cf246..8abecb8 100644
--- a/include/pybind11/detail/internals.h
+++ b/include/pybind11/detail/internals.h
@@ -406,11 +406,11 @@
 #if PY_VERSION_HEX < 0x03080000 || defined(PYPY_VERSION)
     state_dict = reinterpret_borrow<object>(PyEval_GetBuiltins());
 #else
-#  if PY_VERSION_HEX < 0x03090000
+#    if PY_VERSION_HEX < 0x03090000
     PyInterpreterState *istate = _PyInterpreterState_Get();
-#else
+#    else
     PyInterpreterState *istate = PyInterpreterState_Get();
-#endif
+#    endif
     if (istate)
         state_dict = reinterpret_borrow<object>(PyInterpreterState_GetDict(istate));
 #endif