Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulgoel873 committed Jun 27, 2024
1 parent 00ae181 commit 6465ea1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rb_ws/src/buggy/launch/sim_2d_single.launch
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<launch>
<arg name="start_pos" default="Hill1_SC" />
<arg name="autonsystem_args" default="--controller stanley --dist 0.0 --traj frew_test.json --self_name SC" />
<arg name="autonsystem_args" default="--controller stanley --dist 0.0 --traj buggycourse_safe.json --self_name SC" />
<arg name="velocity" default="15.0" />
<arg name="buggy_name" default="SC" />

Expand Down
2 changes: 1 addition & 1 deletion rb_ws/src/buggy/scripts/auton/trajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def pack(self) -> TrajectoryMsg:
traj.time = time.time()
return traj

def unpack(trajMsg : TrajectoryMsg) -> Trajectory:
def unpack(trajMsg : TrajectoryMsg):
pos = np.array([trajMsg.easting, trajMsg.northing]).transpose(1, 0)
return Trajectory(positions=pos)

Expand Down

0 comments on commit 6465ea1

Please sign in to comment.