8000 fix imports for py <3.7 · suddrey-qut/spatialmath-python@48f065a · GitHub
[go: up one dir, main page]

Skip to content

Commit 48f065a

Browse files
committed
fix imports for py <3.7
1 parent e7a27f1 commit 48f065a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spatialmath/base/animate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
# quiver.set_offsets(), quiver.set_UVC()
1313
# FancyArrow.set_xy()
1414

15+
import numpy as np
16+
import math
1517
import matplotlib.pyplot as plt
1618
from mpl_toolkits.mplot3d import Axes3D
1719
from matplotlib import animation
18-
from spatialmath import base as tr
19-
import numpy as np
20-
import math
2120

21+
from spatialmath.base import base as tr
2222

2323
class Animate:
2424
"""

0 commit comments

Comments
 (0)
0