Skip to content

Commit

Permalink
- fix import pySVCGAL (failed if functions in module renamed)
Browse files Browse the repository at this point in the history
  • Loading branch information
satabol committed Nov 20, 2024
1 parent 91f83d1 commit 88a4b97
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nodes/CAD/straight_skeleton_2d_extrude.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
enable_module = True
except ModuleNotFoundError:
enable_module = False
except Exception as _ex:
enable_module = False
print(_ex)


# if values out of range then values will be aligned to range
Expand Down
3 changes: 3 additions & 0 deletions nodes/CAD/straight_skeleton_2d_offset.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
enable_module = True
except ModuleNotFoundError:
enable_module = False
except Exception as _ex:
enable_module = False
print(_ex)



Expand Down

0 comments on commit 88a4b97

Please sign in to comment.