10000 Fix np int error · aforechi/robotics-toolbox-python@9b99b28 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9b99b28

Browse files
authored
Fix np int error
1 parent 3bda0cc commit 9b99b28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roboticstoolbox/mobile/Bug2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def edgelist(im, p, direction=1):
323323
IAPR Workshop on Machine Vision Applications Dec. 13-15, 1994, Kawasaki
324324
325325
"""
326-
p = base.getvector(p, 2, dtype=np.int)
326+
p = base.getvector(p, 2, dtype=int)
327327

328328
if direction > 0:
329329
neighbours = np.arange(start=0, stop=8, step=1)

0 commit comments

Comments
 (0)
0