replace import *'s with named imports (using * is convenient for some scripts but considered bad practice by python devs)
This commit is contained in:
@@ -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):
|
||||
|
Reference in New Issue
Block a user