Skip to content

Commit

Permalink
Merge pull request #1542 from alexmcroberts/patch-1
Browse files Browse the repository at this point in the history
Fix typo of break to brake
  • Loading branch information
sytelus authored Nov 15, 2018
2 parents 990bc77 + 43b7cee commit 86d4766
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 86d4766

Please sign in to comment.