Fix: wrong argument name in doc-string

Correct regression from !141334.

Ref !141592
This commit is contained in:
Andrej730
2025-07-08 12:00:32 +00:00
committed by Campbell Barton
parent 3eb4a59a13
commit 8246ea913f

View File

@@ -3728,8 +3728,8 @@ PyDoc_STRVAR(
"\n"
" Unset a property, will use default value afterward.\n"
"\n"
" :arg key: Property name.\n"
" :type key: str\n");
" :arg property: Property name.\n"
" :type property: str\n");
static PyObject *pyrna_struct_property_unset(BPy_StructRNA *self, PyObject *args)
{
PropertyRNA *prop;