Skip to content

Commit

Permalink
fixed lgtm warning
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiSakai committed Dec 8, 2019
1 parent b1a1d8e commit bf86cc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PathPlanning/HybridAStar/hybrid_a_star.py
Expand Up @@ -150,7 +150,7 @@ def calc_next_node(current, steer, direction, config, ox, oy, kdtree):

arc_l = XY_GRID_RESOLUTION * 1.5
xlist, ylist, yawlist = [], [], []
for dist in np.arange(0, arc_l, MOTION_RESOLUTION):
for _ in np.arange(0, arc_l, MOTION_RESOLUTION):
x, y, yaw = move(x, y, yaw, MOTION_RESOLUTION * direction, steer)
xlist.append(x)
ylist.append(y)
Expand Down

0 comments on commit bf86cc8

Please sign in to comment.