PyDocs: Fix syntax errors resulting in warnings

This commit is contained in:
Aaron Carlisle 2021-07-23 16:50:10 -04:00
parent c41b93bda5
commit 5e3d0840a3
1 changed files with 2 additions and 2 deletions

View File

@ -4254,7 +4254,7 @@ static PyObject *pyrna_struct_dir(BPy_StructRNA *self)
}
PyDoc_STRVAR(pyrna_struct_id_properties_ensure_doc,
".. method:: id_properties_ensure()\n"
".. method:: id_properties_ensure()\n\n"
" :return: the parent group for an RNA struct's custom IDProperties.\n"
" :rtype: :class:`bpy.types.IDPropertyGroup`\n");
static PyObject *pyrna_struct_id_properties_ensure(BPy_StructRNA *self)
@ -4282,7 +4282,7 @@ static PyObject *pyrna_struct_id_properties_ensure(BPy_StructRNA *self)
}
PyDoc_STRVAR(pyrna_struct_id_properties_clear_doc,
".. method:: id_properties_clear()\n"
".. method:: id_properties_clear()\n\n"
" :return: Remove the parent group for an RNA struct's custom IDProperties.\n");
static PyObject *pyrna_struct_id_properties_clear(BPy_StructRNA *self)
{