Minor fix to packaging

This commit is contained in:
Dion Moult
2019-09-27 08:43:49 +10:00
parent ae6dfce7e3
commit a07c2cb1f8
2 changed files with 1 additions and 3 deletions
@@ -26,7 +26,6 @@ class ExportIFC(bpy.types.Operator):
bl_idname = "export.ifc"
bl_label = "Export .ifc file"
filename_ext = ".ifc"
#filter_glob: StringProperty(default="*.ifc", options={'HIDDEN'})
filepath: StringProperty(subtype='FILE_PATH')
def invoke(self, context, event):
@@ -50,7 +49,6 @@ class ExportIFC(bpy.types.Operator):
print('# Export finished in {:.2f} seconds'.format(time.time() - start))
return {'FINISHED'}
def menu_func(self, context):
self.layout.operator(ExportIFC.bl_idname,
text="Industry Foundation Classes (.ifc)")
+1 -1
View File
@@ -1,10 +1,10 @@
import ifcopenshell
import bpy
import csv
import json
import time
from pathlib import Path
from mathutils import Vector
from . import ifcopenshell
class ArrayModifier:
count: int