From 532c8ac58384309e77791e32ab78f448ad2a76a6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 26 Jun 2018 19:41:37 +0200 Subject: Cleanup: pep8 function indentation --- release/scripts/startup/bl_operators/mesh.py | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'release/scripts/startup/bl_operators/mesh.py') 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): -- cgit v1.2.3