Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Leger <stephen@3dservices.ch>2017-07-22 18:51:57 +0300
committerStephen Leger <stephen@3dservices.ch>2017-07-22 18:51:57 +0300
commitf9b99fef0f6ee54bf8f2ee02d5738c7ce96bdbd8 (patch)
tree045d6d1f13cf5c1ccd8fc1de8f634096d7679d60 /archipack
parentc1ab9b4b9c6c0226f8d7789b92efda9b0f33cfd1 (diff)
archipack: T52120 remove blank space on empty lines
Diffstat (limited to 'archipack')
-rw-r--r--archipack/__init__.py10
-rw-r--r--archipack/archipack_stair.py2
2 files changed, 6 insertions, 6 deletions
diff --git a/archipack/__init__.py b/archipack/__init__.py
index 79ac9879..6b4313ac 100644
--- a/archipack/__init__.py
+++ b/archipack/__init__.py
@@ -279,7 +279,7 @@ class TOOLS_PT_Archipack_PolyLib(Panel):
bl_region_type = "TOOLS"
bl_category = "Tools"
bl_context = "objectmode"
-
+
@classmethod
def poll(self, context):
@@ -385,7 +385,7 @@ class TOOLS_PT_Archipack_Tools(Panel):
bl_region_type = "TOOLS"
bl_category = "Tools"
bl_context = "objectmode"
-
+
@classmethod
def poll(self, context):
return True
@@ -414,7 +414,7 @@ class TOOLS_PT_Archipack_Create(Panel):
bl_region_type = "TOOLS"
bl_category = "Create"
bl_context = "objectmode"
-
+
@classmethod
def poll(self, context):
return True
@@ -532,7 +532,7 @@ class ARCHIPACK_create_menu(Menu):
bl_label = 'Archipack'
bl_idname = 'ARCHIPACK_create_menu'
bl_context = "objectmode"
-
+
def draw(self, context):
draw_menu(self, context)
@@ -614,7 +614,7 @@ def unregister():
bpy.utils.unregister_class(TOOLS_PT_Archipack_Tools)
bpy.utils.unregister_class(TOOLS_PT_Archipack_Create)
bpy.utils.unregister_class(Archipack_Pref)
-
+
# unregister subs
archipack_snap.unregister()
archipack_manipulator.unregister()
diff --git a/archipack/archipack_stair.py b/archipack/archipack_stair.py
index c7e7f02c..02f80634 100644
--- a/archipack/archipack_stair.py
+++ b/archipack/archipack_stair.py
@@ -946,7 +946,7 @@ class StairGenerator():
def make_stair(self, height, step_depth, verts, faces, matids, uvs, nose_y=0):
n_steps = self.n_steps(step_depth)
self.set_height(height / n_steps)
-
+
for s, stair in enumerate(self.stairs):
if s < len(self.parts):
manipulator = self.parts[s].manipulators[0]