From cd60843aef84b1801c9e0ff5c8d63926a20435cd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 13 Apr 2019 12:44:34 +0200 Subject: Cleanup: add trailing commas to wrapped args --- release/scripts/startup/bl_ui/properties_physics_common.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'release/scripts/startup/bl_ui/properties_physics_common.py') diff --git a/release/scripts/startup/bl_ui/properties_physics_common.py b/release/scripts/startup/bl_ui/properties_physics_common.py index 965b635418f..11a9b250454 100644 --- a/release/scripts/startup/bl_ui/properties_physics_common.py +++ b/release/scripts/startup/bl_ui/properties_physics_common.py @@ -39,13 +39,21 @@ def physics_add(self, layout, md, name, type, typeicon, toggles): row = layout.row(align=True) if md: row.context_pointer_set("modifier", md) - row.operator("object.modifier_remove", text=name, text_ctxt=i18n_contexts.default, icon='X') + row.operator( + "object.modifier_remove", + text=name, + text_ctxt=i18n_contexts.default, + icon='X', + ) if toggles: row.prop(md, "show_render", text="") row.prop(md, "show_viewport", text="") else: row.operator( - "object.modifier_add", text=name, text_ctxt=i18n_contexts.default, icon='BLANK1' + "object.modifier_add", + text=name, + text_ctxt=i18n_contexts.default, + icon='BLANK1', ).type = type -- cgit v1.2.3