From f9b99fef0f6ee54bf8f2ee02d5738c7ce96bdbd8 Mon Sep 17 00:00:00 2001
From: Stephen Leger <stephen@3dservices.ch>
Date: Sat, 22 Jul 2017 17:51:57 +0200
Subject: [PATCH] archipack: T52120 remove blank space on empty lines

---
 archipack/__init__.py        | 10 +++++-----
 archipack/archipack_stair.py |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/archipack/__init__.py b/archipack/__init__.py
index 79ac9879f..6b4313ac1 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 c7e7f02c1..02f806348 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]
-- 
GitLab