From ba21c27e7659b8a279596f88295d5ac3183cfc8c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 3 Sep 2018 14:15:18 +1000 Subject: Cleanup: use single quotes for enum's --- release/scripts/startup/bl_operators/freestyle.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'release/scripts/startup/bl_operators/freestyle.py') diff --git a/release/scripts/startup/bl_operators/freestyle.py b/release/scripts/startup/bl_operators/freestyle.py index 894808de3ed..7196c53098b 100644 --- a/release/scripts/startup/bl_operators/freestyle.py +++ b/release/scripts/startup/bl_operators/freestyle.py @@ -36,9 +36,11 @@ class SCENE_OT_freestyle_fill_range_by_selection(bpy.types.Operator): type: EnumProperty( name="Type", description="Type of the modifier to work on", - items=(("COLOR", "Color", "Color modifier type"), - ("ALPHA", "Alpha", "Alpha modifier type"), - ("THICKNESS", "Thickness", "Thickness modifier type")), + items=( + ('COLOR', "Color", "Color modifier type"), + ('ALPHA', "Alpha", "Alpha modifier type"), + ('THICKNESS', "Thickness", "Thickness modifier type"), + ), ) name: StringProperty( name="Name", -- cgit v1.2.3