From 8246ea913fa1332114885cd68a78be5e32482435 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 8 Jul 2025 12:00:32 +0000 Subject: [PATCH] Fix: wrong argument name in doc-string Correct regression from !141334. Ref !141592 --- source/blender/python/intern/bpy_rna.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/python/intern/bpy_rna.cc b/source/blender/python/intern/bpy_rna.cc index 68c9e622323..e1f7462dc5a 100644 --- a/source/blender/python/intern/bpy_rna.cc +++ b/source/blender/python/intern/bpy_rna.cc @@ -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;