1 Commits

Author SHA1 Message Date
Jonathon Broughton 85a73cb8eb try import pymesh to stop schema check failing
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
2023-11-13 02:43:30 +00:00
2 changed files with 10 additions and 2 deletions
+5 -1
View File
@@ -1,7 +1,11 @@
from concurrent.futures import ProcessPoolExecutor, as_completed
from typing import List, Tuple, Any, Optional
import pymesh
try:
import pymesh
except ImportError:
pymesh = None # Or handle it in another appropriate way
from speckle_automate import AutomationContext
from Geometry.element import Element
+5 -1
View File
@@ -1,6 +1,10 @@
from typing import Union, Type
import pymesh
try:
import pymesh
except ImportError:
pymesh = None
import trimesh