mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 17:58:20 +00:00
Minor fix to packaging
This commit is contained in:
@@ -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,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
|
||||
|
||||
Reference in New Issue
Block a user