Resolve #1860. Brickschema is now optional.

This commit is contained in:
Dion Moult
2021-11-08 11:17:11 +11:00
parent e4a27d49c9
commit 669295d4ac
+6 -1
View File
@@ -18,10 +18,15 @@
import os
import bpy
import brickschema
import blenderbim.core.tool
import blenderbim.tool as tool
try:
import brickschema
except:
# See #1860
print("Warning: brickschema not available.")
class Brick(blenderbim.core.tool.Brick):
@classmethod