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-06-26 20:41:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-26 20:58:56 +0300
commit532c8ac58384309e77791e32ab78f448ad2a76a6 (patch)
treecef77b98714aaed13ec8317bc9bb763d00aa1a02 /release/scripts/startup/bl_operators/mesh.py
parentecb56eac57e66c1c925860e05438c9f245bff505 (diff)
Cleanup: pep8 function indentation
Diffstat (limited to 'release/scripts/startup/bl_operators/mesh.py')
-rw-r--r--release/scripts/startup/bl_operators/mesh.py22
1 files changed, 12 insertions, 10 deletions
diff --git a/release/scripts/startup/bl_operators/mesh.py b/release/scripts/startup/bl_operators/mesh.py
index 467c3df3158..7fb1877d191 100644
--- a/release/scripts/startup/bl_operators/mesh.py
+++ b/release/scripts/startup/bl_operators/mesh.py
@@ -34,18 +34,20 @@ class MeshMirrorUV(Operator):
bl_options = {'REGISTER', 'UNDO'}
direction = EnumProperty(
- name="Axis Direction",
- items=(('POSITIVE', "Positive", ""),
- ('NEGATIVE', "Negative", "")),
- )
+ name="Axis Direction",
+ items=(
+ ('POSITIVE', "Positive", ""),
+ ('NEGATIVE', "Negative", ""),
+ ),
+ )
precision = IntProperty(
- name="Precision",
- description=("Tolerance for finding vertex duplicates"),
- min=1, max=16,
- soft_min=1, soft_max=16,
- default=3,
- )
+ name="Precision",
+ description=("Tolerance for finding vertex duplicates"),
+ min=1, max=16,
+ soft_min=1, soft_max=16,
+ default=3,
+ )
@classmethod
def poll(cls, context):