Skip to content

Commit

Permalink
Fix typo of break to brake
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmcroberts authored Nov 14, 2018
1 parent 43f254f commit 43b7cee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PythonClient/car/hello_car.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
car_controls.is_manual_gear = False; # change back gear to auto
car_controls.manual_gear = 0

# apply breaks
# apply brakes
car_controls.brake = 1
client.setCarControls(car_controls)
print("Apply break")
print("Apply brakes")
time.sleep(3) # let car drive a bit
car_controls.brake = 0 #remove break
car_controls.brake = 0 #remove brake

# get camera images from the car
responses = client.simGetImages([
Expand Down

0 comments on commit 43b7cee

Please sign in to comment.