Cleanup: use camel-case for struct name, wrap function arguments

This commit is contained in:
2023-03-03 16:24:14 +11:00
parent 2eaa55272d
commit f0257aa71b
2 changed files with 13 additions and 8 deletions

View File

@@ -141,9 +141,14 @@ static PyTypeObject bpy_lib_Type = {
PyDoc_STRVAR(
bpy_lib_load_doc,
".. method:: load(filepath, link=False, relative=False, assets_only=False,\n"
" create_liboverrides=False, reuse_liboverrides=False,\n"
" create_liboverrides_runtime=False)\n"
".. method:: load("
"filepath, "
"link=False, "
"relative=False, "
"assets_only=False, "
"create_liboverrides=False, "
"reuse_liboverrides=False, "
"create_liboverrides_runtime=False)\n"
"\n"
" Returns a context manager which exposes 2 library objects on entering.\n"
" Each object has attributes matching bpy.data which are lists of strings to be linked.\n"