Fix a whitespace problem pre-commit complains about:
...
check-whitespace........................................................Failed
- hook id: check-whitespace
- exit code: 2
gdb/python/py-ref.h:58: indent with spaces.
+ "The __dict__ for this object.", nullptr },
...
gdb_PyGetSetDef my_object_getset[] =
{
{ "__dict__", gdb_py_generic_dict_getter, nullptr,
- "The __dict__ for this object.", nullptr },
+ "The __dict__ for this object.", nullptr },
...
{ nullptr }
};