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 --- .../startup/bl_operators/vertexpaint_dirt.py | 52 +++++++++++----------- 1 file changed, 26 insertions(+), 26 deletions(-) (limited to 'release/scripts/startup/bl_operators/vertexpaint_dirt.py') diff --git a/release/scripts/startup/bl_operators/vertexpaint_dirt.py b/release/scripts/startup/bl_operators/vertexpaint_dirt.py index f12b76a76ba..1173e0047bb 100644 --- a/release/scripts/startup/bl_operators/vertexpaint_dirt.py +++ b/release/scripts/startup/bl_operators/vertexpaint_dirt.py @@ -139,36 +139,36 @@ class VertexPaintDirt(Operator): bl_options = {'REGISTER', 'UNDO'} blur_strength = FloatProperty( - name="Blur Strength", - description="Blur strength per iteration", - min=0.01, max=1.0, - default=1.0, - ) + name="Blur Strength", + description="Blur strength per iteration", + min=0.01, max=1.0, + default=1.0, + ) blur_iterations = IntProperty( - name="Blur Iterations", - description="Number of times to blur the colors (higher blurs more)", - min=0, max=40, - default=1, - ) + name="Blur Iterations", + description="Number of times to blur the colors (higher blurs more)", + min=0, max=40, + default=1, + ) clean_angle = FloatProperty( - name="Highlight Angle", - description="Less than 90 limits the angle used in the tonal range", - min=0.0, max=pi, - default=pi, - unit="ROTATION", - ) + name="Highlight Angle", + description="Less than 90 limits the angle used in the tonal range", + min=0.0, max=pi, + default=pi, + unit="ROTATION", + ) dirt_angle = FloatProperty( - name="Dirt Angle", - description="Less than 90 limits the angle used in the tonal range", - min=0.0, max=pi, - default=0.0, - unit="ROTATION", - ) + name="Dirt Angle", + description="Less than 90 limits the angle used in the tonal range", + min=0.0, max=pi, + default=0.0, + unit="ROTATION", + ) dirt_only = BoolProperty( - name="Dirt Only", - description="Don't calculate cleans for convex areas", - default=False, - ) + name="Dirt Only", + description="Don't calculate cleans for convex areas", + default=False, + ) @classmethod def poll(cls, context): -- cgit v1.2.3