Removed useless unused vars

This commit is contained in:
Nobody Really
2016-08-31 13:39:01 +02:00
parent 0b2668b3fa
commit e562cf88ba
3 changed files with 7 additions and 19 deletions

View File

@@ -38,7 +38,7 @@ bl_info = {
if "bpy" in locals():
import imp
if "export_dae" in locals():
imp.reload(export_dae)
imp.reload(export_dae) # noqa
class ExportDAE(bpy.types.Operator, ExportHelper):