Skip to content
This repository was archived by the owner on Feb 3, 2023. It is now read-only.

Commit 6ddafff

Browse files
committed
fix premature import of lace
1 parent 4ca8f9a commit 6ddafff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

blmath/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.1'
1+
__version__ = '1.0.2'

blmath/geometry/primitives/polyline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def as_lines(self):
4343
Return a Lines instance with our vertices and edges.
4444
4545
'''
46-
from lace.lines import Lines
46+
from bodylabs.mesh.lines import Lines
4747
return Lines(v=self.v, e=self.e)
4848

4949
def to_dict(self, decimals=3):

0 commit comments

Comments
 (0)