[Bf-extensions-cvs] [f9b99fef] master: archipack: T52120 remove blank space on empty lines

Stephen Leger noreply at git.blender.org
Sat Jul 22 17:52:18 CEST 2017


Commit: f9b99fef0f6ee54bf8f2ee02d5738c7ce96bdbd8
Author: Stephen Leger
Date:   Sat Jul 22 17:51:57 2017 +0200
Branches: master
https://developer.blender.org/rBAf9b99fef0f6ee54bf8f2ee02d5738c7ce96bdbd8

archipack: T52120 remove blank space on empty lines

===================================================================

M	archipack/__init__.py
M	archipack/archipack_stair.py

===================================================================

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]



More information about the Bf-extensions-cvs mailing list