diff --git a/source/blender/python/intern/bpy_rna_anim.cc b/source/blender/python/intern/bpy_rna_anim.cc index 3a91a85be40..9dfff2f19a5 100644 --- a/source/blender/python/intern/bpy_rna_anim.cc +++ b/source/blender/python/intern/bpy_rna_anim.cc @@ -288,7 +288,8 @@ static int pyrna_struct_keyframe_parse(PointerRNA *ptr, } char pyrna_struct_keyframe_insert_doc[] = - ".. method:: keyframe_insert(data_path, /, *, index=-1, frame=bpy.context.scene.frame_current, " + ".. method:: keyframe_insert(data_path, /, *, index=-1, " + "frame=bpy.context.scene.frame_current, " "group=\"\", options=set(), keytype='KEYFRAME')\n" "\n" " Insert a keyframe on the property given, adding fcurves and animation data when " @@ -447,7 +448,8 @@ PyObject *pyrna_struct_keyframe_insert(BPy_StructRNA *self, PyObject *args, PyOb } char pyrna_struct_keyframe_delete_doc[] = - ".. method:: keyframe_delete(data_path, /, *, index=-1, frame=bpy.context.scene.frame_current, " + ".. method:: keyframe_delete(data_path, /, *, index=-1, " + "frame=bpy.context.scene.frame_current, " "group=\"\")\n" "\n" " Remove a keyframe from this properties fcurve.\n"