replace import *'s with named imports (using * is convenient for some scripts but considered bad practice by python devs)

This commit is contained in:
Campbell Barton
2011-02-27 15:25:24 +00:00
parent 52f92b4cb1
commit fc0c016940
19 changed files with 74 additions and 73 deletions

View File

@@ -34,7 +34,7 @@ def add_box(width, height, depth):
return vertices, faces
from bpy.props import *
from bpy.props import FloatProperty, BoolProperty, FloatVectorProperty
class AddBox(bpy.types.Operator):