Cleanup: add trailing commas

Prevents clang-format merging into a single line.
This commit is contained in:
2019-01-19 13:21:18 +11:00
parent c59370bf64
commit 8a61ea7296
40 changed files with 73 additions and 73 deletions

View File

@@ -3193,7 +3193,7 @@ static struct PyModuleDef props_module = {
".. note:: All parameters to these functions must be passed as keywords.\n",
-1, /* multiple "initialization" just copies the module dict. */
props_methods,
NULL, NULL, NULL, NULL
NULL, NULL, NULL, NULL,
};
PyObject *BPY_rna_props(void)