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:
authorCampbell Barton <ideasman42@gmail.com>2012-01-01 16:35:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-01-01 16:35:51 +0400
commit6f2787a32081cbc3515808893dba709b0f79e2f4 (patch)
treeb34df9008076859cfe2cf2f56335d76e840575ea /rigify/rig_ui_template.py
parentf6dc4b39f67417ee023787c641ad158be737c214 (diff)
set as pep8, only minor edits
Diffstat (limited to 'rigify/rig_ui_template.py')
-rw-r--r--rigify/rig_ui_template.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rigify/rig_ui_template.py b/rigify/rig_ui_template.py
index f21c4096..c793dade 100644
--- a/rigify/rig_ui_template.py
+++ b/rigify/rig_ui_template.py
@@ -16,6 +16,8 @@
#
#======================= END GPL LICENSE BLOCK ========================
+# <pep8 compliant>
+
UI_SLIDERS = '''
import bpy
from mathutils import Matrix, Vector
@@ -543,7 +545,6 @@ class RigLayers(bpy.types.Panel):
code += "\n row = col.row()\n"
code += " row.prop(context.active_object.data, 'layers', index=28, toggle=True, text='Root')\n"
-
return code
@@ -567,4 +568,3 @@ def unregister():
register()
'''
-