Skip to content

Commit 87cabfe

Browse files
authored
Merge pull request #53 from StephLin/fix-py3.6-import-errors
Fixes import errors in Python 3.6 #52
2 parents da5aa91 + a18701c commit 87cabfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spatialmath/base/transforms3d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from collections.abc import Iterable
2222

2323
from spatialmath import base as smb
24-
import spatialmath.base.symbolic as sym
24+
from spatialmath.base import symbolic as sym
2525

2626
_eps = np.finfo(np.float64).eps
2727

0 commit comments

Comments
 (0)