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

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

View File

@@ -19,7 +19,7 @@
# <pep8 compliant>
import bpy
from bpy.props import *
from bpy.props import StringProperty, BoolProperty
class ExportHelper: