Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-11-30 01:18:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-11-30 02:15:17 +0300
commitac447ba1a3f2479f65c9ceddebaafc47681623ba (patch)
treeb134c5750696a977700f990477d9e3478750ae0a /source/blender/python
parente2473d3baf00eb9984ce679c716489d891019279 (diff)
Cleanup: clang-format, trailing space
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/blender/python/intern/bpy.c b/source/blender/python/intern/bpy.c
index 22d54ad72ba..152b08f5085 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -151,10 +151,12 @@ static PyObject *bpy_blend_paths(PyObject *UNUSED(self), PyObject *args, PyObjec
list = PyList_New(0);
- BKE_bpath_foreach_path_main(&(BPathForeachPathData){.bmain = G_MAIN,
- .callback_function = bpy_blend_foreach_path_cb,
- .flag = flag,
- .user_data = list});
+ BKE_bpath_foreach_path_main(&(BPathForeachPathData){
+ .bmain = G_MAIN,
+ .callback_function = bpy_blend_foreach_path_cb,
+ .flag = flag,
+ .user_data = list,
+ });
return list;
}