style: pre-commit fixes

This commit is contained in:
pre-commit-ci[bot] 2022-11-02 21:36:59 +00:00
parent 780c6ff9c8
commit 39c21a36e4

View File

@ -408,9 +408,9 @@ inline object get_internals_state_dict() {
#else #else
# if PY_VERSION_HEX < 0x03090000 # if PY_VERSION_HEX < 0x03090000
PyInterpreterState *istate = _PyInterpreterState_Get(); PyInterpreterState *istate = _PyInterpreterState_Get();
#else # else
PyInterpreterState *istate = PyInterpreterState_Get(); PyInterpreterState *istate = PyInterpreterState_Get();
#endif # endif
if (istate) if (istate)
state_dict = reinterpret_borrow<object>(PyInterpreterState_GetDict(istate)); state_dict = reinterpret_borrow<object>(PyInterpreterState_GetDict(istate));
#endif #endif