Skip to content

Commit bf86cc8

Browse files
committed
fixed lgtm warning
1 parent b1a1d8e commit bf86cc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PathPlanning/HybridAStar/hybrid_a_star.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def calc_next_node(current, steer, direction, config, ox, oy, kdtree):
150150

151151
arc_l = XY_GRID_RESOLUTION * 1.5
152152
xlist, ylist, yawlist = [], [], []
153-
for dist in np.arange(0, arc_l, MOTION_RESOLUTION):
153+
for _ in np.arange(0, arc_l, MOTION_RESOLUTION):
154154
x, y, yaw = move(x, y, yaw, MOTION_RESOLUTION * direction, steer)
155155
xlist.append(x)
156156
ylist.append(y)

0 commit comments

Comments
 (0)