Cleanup: use trailing commas for multi-line arguments

This commit is contained in:
2019-06-21 08:36:03 +10:00
parent 91b8e24db3
commit d2e474d043
7 changed files with 21 additions and 20 deletions

View File

@@ -135,7 +135,7 @@ def point_cache_ui(self, cache, enabled, cachetype):
row = layout.row()
row.template_list(
"UI_UL_list", "point_caches", cache, "point_caches",
cache.point_caches, "active_index", rows=1
cache.point_caches, "active_index", rows=1,
)
col = row.column(align=True)
col.operator("ptcache.add", icon='ADD', text="")