Cleanup: comments (long lines) in python

This commit is contained in:
2019-04-29 19:59:13 +10:00
parent c7f67d60fb
commit 778542fd8f
23 changed files with 182 additions and 90 deletions

View File

@@ -40,10 +40,12 @@ static PyStructSequence_Field app_ocio_info_fields[] = {
};
static PyStructSequence_Desc app_ocio_info_desc = {
(char *)"bpy.app.ocio", /* name */
(char
*)"This module contains information about OpenColorIO blender is linked against", /* doc */
app_ocio_info_fields, /* fields */
/* name */
(char *)"bpy.app.ocio",
/* doc */
(char *)"This module contains information about OpenColorIO blender is linked against",
/* fields */
app_ocio_info_fields,
ARRAY_SIZE(app_ocio_info_fields) - 1,
};