Skip to content

Commit

Permalink
tools: Fix change_landing script
Browse files Browse the repository at this point in the history
  • Loading branch information
goldarte committed Nov 18, 2019
1 parent 14ead33 commit 7127c1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/change_landing.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ def parse_positions_file(filename):
n_str = pos_file.readline()[:-1].split(' ')
nx = int(n_str[0])
ny = int(n_str[1])
dx = int(n_str[2])
dy = int(n_str[3])
dx = float(n_str[2])
dy = float(n_str[3])
pos_str = pos_file.readline()[:-1].split(' ')
for i in range(3):
pos.append(float(pos_str[i]))
Expand Down

0 comments on commit 7127c1e

Please sign in to comment.