Skip to content

Commit ffbd3e5

Browse files
committed
typing
1 parent 98c4a1d commit ffbd3e5

File tree

4 files changed

+193
-124
lines changed

4 files changed

+193
-124
lines changed

src/blenderbim/blenderbim/bim/module/diff/operator.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@
1919
import bpy
2020
import json
2121
import logging
22+
import ifcdiff
2223
import ifcopenshell
2324
import blenderbim.bim.handler
25+
import blenderbim.bim.import_ifc
2426
import blenderbim.tool as tool
2527
from blenderbim.bim.ifc import IfcStore
2628

@@ -175,7 +177,7 @@ def execute(self, context):
175177
blenderbim.bim.handler.refresh_ui_data()
176178
return {"FINISHED"}
177179

178-
def load_changed_elements(self, ifc_diff):
180+
def load_changed_elements(self, ifc_diff: ifcdiff.IfcDiff):
179181
if not tool.Ifc.get() or self.props.active_file == "NONE" or not self.props.should_load_changed_elements:
180182
return
181183

0 commit comments

Comments
 (0)