Cleanup: pep8

This commit is contained in:
Campbell Barton
2015-05-17 17:17:31 +10:00
parent 02cbc3c1e0
commit 847ec075eb
11 changed files with 49 additions and 25 deletions

View File

@@ -35,7 +35,11 @@ __all__ = (
)
import bpy
from bpy.props import StringProperty, BoolProperty, EnumProperty
from bpy.props import (
StringProperty,
BoolProperty,
EnumProperty,
)
def _check_axis_conversion(op):
@@ -368,7 +372,7 @@ def unpack_list(list_of_tuples):
# same as above except that it adds 0 for triangle faces
def unpack_face_list(list_of_tuples):
#allocate the entire list
# allocate the entire list
flat_ls = [0] * (len(list_of_tuples) * 4)
i = 0