remove try except for ifcpatch import as it's not optional

This commit is contained in:
Andrej730
2024-10-04 17:14:45 +05:00
parent 0cef788a09
commit dc63e989d6
2 changed files with 2 additions and 15 deletions
+1 -10
View File
@@ -18,17 +18,8 @@
import bpy
import ifcopenshell
import ifcpatch
import bonsai.core.tool
from typing import TYPE_CHECKING
try:
import ifcpatch
except ImportError:
print("IfcPatch not available")
if TYPE_CHECKING:
import ifcpatch
class Patch(bonsai.core.tool.Patch):