Skip to content

Commit 1a879b5

Browse files
style: pre-commit fixes
1 parent c3c60f4 commit 1a879b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/pybind11/detail/class.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -586,10 +586,10 @@ inline void enable_dynamic_attributes(PyHeapTypeObject *heap_type) {
586586
type->tp_basicsize += (ssize_t) sizeof(PyObject *); // and allocate enough space for it
587587
#else
588588
type->tp_flags |= Py_TPFLAGS_MANAGED_DICT;
589-
#if PY_VERSION_HEX >= 0x030D00A1
589+
# if PY_VERSION_HEX >= 0x030D00A1
590590
// Workaround for https://github.com/python/cpython/issues/115776
591591
type->tp_flags &= ~Py_TPFLAGS_INLINE_VALUES;
592-
#endif
592+
# endif
593593
#endif
594594
type->tp_traverse = pybind11_traverse;
595595
type->tp_clear = pybind11_clear;

0 commit comments

Comments
 (0)