[Bf-blender-cvs] [b1f871d0318] greasepencil-object: Code Cleanup: PEP-8

Joshua Leung noreply at git.blender.org
Wed Sep 20 03:13:02 CEST 2017


Commit: b1f871d03189b757273e7af751f93a083f7a23fd
Author: Joshua Leung
Date:   Wed Sep 20 12:45:17 2017 +1200
Branches: greasepencil-object
https://developer.blender.org/rBb1f871d03189b757273e7af751f93a083f7a23fd

Code Cleanup: PEP-8

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

M	release/scripts/startup/bl_ui/properties_data_gpencil.py

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

diff --git a/release/scripts/startup/bl_ui/properties_data_gpencil.py b/release/scripts/startup/bl_ui/properties_data_gpencil.py
index dae6db283ad..50d14772afd 100644
--- a/release/scripts/startup/bl_ui/properties_data_gpencil.py
+++ b/release/scripts/startup/bl_ui/properties_data_gpencil.py
@@ -91,6 +91,7 @@ class DATA_PT_gpencilparentpanel(GreasePencilParentLayerPanel, Panel):
 
     # NOTE: this is just a wrapper around the generic GP Panel
 
+
 class DATA_PT_gpencilvertexpanel(GreasePencilVertexGroupPanel, Panel):
     bl_space_type = 'PROPERTIES'
     bl_region_type = 'WINDOW'
@@ -98,6 +99,7 @@ class DATA_PT_gpencilvertexpanel(GreasePencilVertexGroupPanel, Panel):
     bl_label = "Vertex Groups"
     bl_options = {'DEFAULT_CLOSED'}
 
+
 class DATA_PT_gpencil_infopanel(GreasePencilInfoPanel, Panel):
     bl_space_type = 'PROPERTIES'
     bl_region_type = 'WINDOW'
@@ -105,7 +107,9 @@ class DATA_PT_gpencil_infopanel(GreasePencilInfoPanel, Panel):
     bl_label = "Information"
     bl_options = {'DEFAULT_CLOSED'}
 
-    # NOTE: this is just a wrapper around th
+    # NOTE: this is just a wrapper around the generic GP Panel
+
+
 class DATA_PT_gpencil_display(DataButtonsPanel, Panel):
     bl_label = "Display"
     bl_options = {'DEFAULT_CLOSED'}
@@ -151,4 +155,4 @@ classes = (
 if __name__ == "__main__":  # only for live edit.
     from bpy.utils import register_class
     for cls in classes:
-        register_class(cls)
\ No newline at end of file
+        register_class(cls)



More information about the Bf-blender-cvs mailing list