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>2018-09-03 07:15:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-03 07:15:18 +0300
commitba21c27e7659b8a279596f88295d5ac3183cfc8c (patch)
treea5ab3a1b420d616dd1638780c2e2d4ec94254539 /release/scripts/startup/bl_operators/freestyle.py
parent0be6146d2628b091ac8954a46673fc32d980b626 (diff)
Cleanup: use single quotes for enum's
Diffstat (limited to 'release/scripts/startup/bl_operators/freestyle.py')
-rw-r--r--release/scripts/startup/bl_operators/freestyle.py8
1 files changed, 5 insertions, 3 deletions
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",